[jQuery] Re: How do I retrieve all INPUT elements from within a div

2009-01-09 Thread Oltmans
Thank you, everyone. On Jan 9, 7:40 pm, Ricardo Tomasi wrote: > Or better yet, simply > > $('#left :text') > > see the pseudo-selectors available athttp://docs.jquery.com/Selectors > under "Forms". > > - ricardo > > On Jan 9, 12:09 pm, "Chandan Luthra" wrote: > > > > > Sorry I left out the div

[jQuery] Re: How do I retrieve all INPUT elements from within a div

2009-01-09 Thread Ricardo Tomasi
Or better yet, simply $('#left :text') see the pseudo-selectors available at http://docs.jquery.com/Selectors under "Forms". - ricardo On Jan 9, 12:09 pm, "Chandan Luthra" wrote: > Sorry I left out the div ,,, > > //for all text boxes in div > $('#left input[type="text"]') > > //for only imme

[jQuery] Re: How do I retrieve all INPUT elements from within a div

2009-01-09 Thread Chandan Luthra
Sorry I left out the div ,,, //for all text boxes in div $('#left input[type="text"]') //for only immediate child text-boxes in div $('#left>input[type="text"]') With Regards, Chandan Luthra Intelligrape Software Pvt. Ltd. On Fri, Jan 9, 2009 at 7:36 PM, Chandan Luthra wrote: > $('input[typ

[jQuery] Re: How do I retrieve all INPUT elements from within a div

2009-01-09 Thread Chandan Luthra
$('input[type="text"]') With Regards, Chandan Luthra Intelligrape Software Pvt. Ltd. On Fri, Jan 9, 2009 at 7:15 PM, Oltmans wrote: > > Hello all, > > I've a DIV that looks like > > > > > and this DIV contains text-boxes, check-boxes and drop-downs. Say, > I've to retrieve only text-boxes f