On 06/09/06, Aljosa Mohorovic <[EMAIL PROTECTED]> wrote:
> 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/
>

$('#profile_form').find("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
>

$('#profile_form').find("[EMAIL PROTECTED]")

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to