showing results for - "how to get form all filed with properties in jquery"
Hadrien
01 Sep 2017
1$(function(){
2 $(':input','form').each(function(i, o){
3    $('#op').append($(o).attr('custom') + ' value:' + $(o).val()+'<br/>');
4 })
5});