[jQuery] Re: exclude input types

2009-03-16 Thread Stephen Sadowski
Hey, You may want to try $('div#tabs input[type!=hidden]').each(function(){/*whatev*/}); Hope that helps! On Mon, 2009-03-16 at 08:08 -0700, jjsanders wrote: > Hello, > > I want to select all my input from a form within a certain div except > hidden values. > So far I have this > > $('div#t

[jQuery] Re: exclude input types

2009-03-16 Thread Karl Swedberg
On Mar 16, 2009, at 11:08 AM, jjsanders wrote: Hello, I want to select all my input from a form within a certain div except hidden values. So far I have this $('div#tabs input').each(function(){ //functionality }); How can i exclude hidden values? Hi, If you want to exclude inputs with