X-Git-Url: https://scripts.mit.edu/gitweb/autoinstallsdev/mediawiki.git/blobdiff_plain/19e297c21b10b1b8a3acad5e73fc71dcb35db44a..6932310fd58ebef145fa01eb76edf7150284d8ea:/resources/src/jquery/jquery.getAttrs.js diff --git a/resources/src/jquery/jquery.getAttrs.js b/resources/src/jquery/jquery.getAttrs.js new file mode 100644 index 00000000..e00298f4 --- /dev/null +++ b/resources/src/jquery/jquery.getAttrs.js @@ -0,0 +1,37 @@ +/** + * @class jQuery.plugin.getAttrs + */ +( function ( $ ) { + function serializeControls( controls ) { + var i, + data = {}, + len = controls.length; + + for ( i = 0; i < len; i++ ) { + data[ controls[ i ].name ] = controls[ i ].value; + } + + return data; + } + + /** + * Get the attributes of an element directy as a plain object. + * + * If there is more than one element in the collection, similar to most other jQuery getter methods, + * this will use the first element in the collection. + * + * @return {Object} + */ + $.fn.getAttrs = function () { + return serializeControls( this[ 0 ].attributes ); + }; + + /** + * Get form data as a plain object mapping form control names to their values. + * + * @return {Object} + */ + $.fn.serializeObject = function () { + return serializeControls( this.serializeArray() ); + }; +}( jQuery ) );