ru-se.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

jquery.serialize-object.js (769B)


      1 /*!
      2  * jQuery serializeObject - v0.2-wp - 1/20/2010
      3  * http://benalman.com/projects/jquery-misc-plugins/
      4  *
      5  * Copyright (c) 2010 "Cowboy" Ben Alman
      6  * Dual licensed under the MIT and GPL licenses.
      7  * http://benalman.com/about/license/
      8  */
      9 
     10 // Whereas .serializeArray() serializes a form into an array, .serializeObject()
     11 // serializes a form into an (arguably more useful) object.
     12 
     13 (function($,undefined){
     14   '$:nomunge'; // Used by YUI compressor.
     15 
     16   $.fn.serializeObject = function(){
     17     var obj = {};
     18 
     19     $.each( this.serializeArray(), function(i,o){
     20       var n = o.name,
     21         v = o.value;
     22 
     23         obj[n] = obj[n] === undefined ? v
     24           : Array.isArray( obj[n] ) ? obj[n].concat( v )
     25           : [ obj[n], v ];
     26     });
     27 
     28     return obj;
     29   };
     30 
     31 })(jQuery);