Re: [jQuery] How do I write an express to access all radio button elements?

2009-12-09 Thread Richard D. Worth
$(':radio') http://docs.jquery.com/Selectors/radio - Richard On Wed, Dec 9, 2009 at 10:41 AM, Dhruva Sagar wrote: > $('input[type=radio]') > > Thanks & Regards, > Dhruva Sagar. > > > > > > On Wed, Dec 9, 2009 at 9:03 PM, laredotorn...@zipmail.com < > laredotorn...@zipmail.com> wrote: > >> Hi, >

Re: [jQuery] How do I write an express to access all radio button elements?

2009-12-09 Thread Dhruva Sagar
$('input[type=radio]') Thanks & Regards, Dhruva Sagar. On Wed, Dec 9, 2009 at 9:03 PM, laredotorn...@zipmail.com < laredotorn...@zipmail.com> wrote: > Hi, > > I'm trying to access all radio button elements with this expression .. > > var expr = $("element[type='radio']"); > > but the experts

[jQuery] How do I write an express to access all radio button elements?

2009-12-09 Thread laredotorn...@zipmail.com
Hi, I'm trying to access all radio button elements with this expression .. var expr = $("element[type='radio']"); but the experts among you know this isn't correct. What is the correct expression? Thanks, - Dave