I have this type of html:
<input id='a1' name='a1' value='111' class='hey'/>
<input id='b1' name='b1' value='222' class='hey'/>
<input id='c1' name='b1' value='333' class='hey'/>
and I need to obtain this json from it:
{ a1: '111', b1: '222', c1: '333' }
anybody knows how ?