I will need to detect if ALL form change for all element,
I tried
$('input, select').change(function(){
alert(' work! ');
});
$('#formID').change(function(){
alert(' work too !');
});
$('textarea, input[type=radio]').change(function(){
alert(' Wont fire ?? ');
});
How do I detect change on textarea, radio button and checkbox ?