I haven't a clue what $F does, but unserialize is the opposite of serialize

jQuery.fn.unserialize = function(search){
       var items = search.split('&');
       for (var i = 0; i < items.length; i++) {
           var parts = items[i].split(/=/);
           this.filter('[EMAIL PROTECTED]'+ parts[0] +']').val(parts[1])
       };
       return this
}




On 6/16/07, Mike Alsup <[EMAIL PROTECTED]> wrote:


John,

The form plugin has a method called fieldValue which is a getter and
is comparable to $F.  Currently the plugin has no complementary setter
method.

Mike


On 6/16/07, John Farrar <[EMAIL PROTECTED]> wrote:
>
> Does anyone have a way to pull individual form elements via a common
> request simular to how they use $F() in prototypt? I would like to be
> able to set/get any form element value via this scope using the
> element ID. (Currently select boxes don't work the same as an input
> element to my perception.)
>
>




--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ

Reply via email to