how to get form all filed with properties in jquery code example
Example: how to get form all filed with properties in jquery
$(function(){
$(':input','form').each(function(i, o){
$('#op').append($(o).attr('custom') + ' value:' + $(o).val()+'<br/>');
})
});