JQuery plugin that returns a hash from serialization of a form. It supports brakets on input names.
It is convenient if you want to get values from a form and merge it with an other hash for example.
Example:
---------- HTML ----------
---------- JS ----------
$('#form').serializeHash()
should return :
{
firstkey: 'val1',
secondkey: {
0: 'val2',
1: 'val3',
key: 'val4'
}
}