Dang. I *hate* the delay that sometimes comes into play when posting to Google Groups. I mean, it makes it look like I ignored the fact that there were multiple similar responses that read basically the same.
On closer look, it appears that my response has an earlier datestamp than many of the responses that sort higher in the thread. Why, Google? WHY!? ;-) Pyro On Oct 16, 10:37 am, Pyrolupus <[EMAIL PROTECTED]> wrote: > You could also use the :checked selector: > > $('input[name=othersTransLink]:checked').val() > > Pyro > > On Oct 16, 10:11 am, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > > One option would be to use the form plugin: > > > var value = $('[name=othersTransLInk]').fieldValue(); > > > This will return the value of the selected radio. > > > Mike > > > > I have a radio button like this one: > > > > <input type="radio" name="othersTransLink" value="familiale" > > > class="radio"> Lien familiale > > > <input type="radio" name="othersTransLink" value="étroit" > > > class="radio"> Lien étroit > > > <input type="radio" name="othersTransLink" value="Intérêt direct ou > > > indirect" class="radio"> Intérêt direct ou indirect > > > > How can I have the value of the checked radio button ? > > > Is this possible ?