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 type="hidden", try this:

$('#tabs input[type!=hidden]').each(function(){
 //functionality
});


--Karl

____________
Karl Swedberg
www.englishrules.com
www.learningjquery.com

Reply via email to