I need to find all form elements inside inside a form and trigger a flag on change in the value. Currently I am using the method below. I am not sure if this works or not. But It surely works for: .find('input[type=text])
$('#form').find('input[type=text], input[type=radio], input[type=checkbox], select, textarea').each(function(){
$(this).change(function(){
if( change !== 1 ) change = 1;
});
})
Now I have added multiple elements with the comma. Will this work and is this the best way to do this.
Appreciate all the help.
Thanks!
Try this:
$('#form').find(':input').each(function(){
$(this).change(function(){
if( change !== 1 ) change = 1;
});
})
Check the doc @:
http://api.jquery.com/input-selector/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With