i have a form with id=profile_form, how can i select all form
elements, but not other elements inside form tag?
$('#profile_form').children(pattern);
pattern = /input|textarea|select/

can i do something like:
$('#profile_form').children('input').name('first_name')
to get input field with name 'first_name'?

Aljosa Mohorovic

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to