Best way to find all input elements inside a form using jQuery
Posted
by
Aayush
on Stack Overflow
See other posts from Stack Overflow
or by Aayush
Published on 2011-01-31T04:59:57Z
Indexed on
2011/11/27
1:50 UTC
Read the original article
Hit count: 178
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!
© Stack Overflow or respective owner