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#tabs input').each(function(){ > //functionality > }); > > How can i exclude hidden values? > >