[jQuery] Re: How to select all input elements but the button one?

2008-09-09 Thread pedalpete
Are you trying to put them all into an object? or a variable? I would normally say use something like [code] $('input').each(function(){ On Sep 9, 12:00 pm, aldomatic [EMAIL PROTECTED] wrote: I'm trying to select all input elements but the submit or button. I appreciate the help. Aldo

[jQuery] Re: How to select all input elements but the button one?

2008-09-09 Thread FrenchiINLA
how about: $('input:not[type=submit], input:not[type=button] ') On Sep 9, 12:00 pm, aldomatic [EMAIL PROTECTED] wrote: I'm trying to select all input elements but the submit or button. I appreciate the help. Aldo