How to set radio option checked onload with jQuery?
Need to check if no default is set and then set a default
|
How to set radio option checked onload with jQuery? Need to check if no default is set and then set a default |
|||
|
|
|
Say you had radio buttons like these, for example:
And you wanted to check the one with a value of "Male" onload if no radio is checked:
|
|||||||||||||||
|
|
How about a one liner?
|
|||||||||||||||
|
|
This one will cause form.reset() failure:
But this one works:
|
|||
|
|
|
I liked the answer by @Amc. I found the expression could be condensed further to not use a filter() call (@chaiko apparently also noticed this). Also, prop() is the way to go vs attr() for jQuery v1.6+, see the jQuery documentation for prop() for the official best practices on the subject. Consider the same input tags from @Paolo Bergantino's answer.
The updated one-liner might read something like:
|
||||
|
|
|
If you want it to be truly dynamic and select the radio that corresponds to the incoming data, this works. It's using the gender value of the data passed in or uses default.
|
|||
|
|
|
Don't need all that.
With simple and old HTML you can achieve what you want.
If you let the radio you want checked by default like this: |
|||||
|
|
$("form input:[name=gender]").filter('[value=Male]').attr('checked', true); |
|||||
|
|
I think you can assume, that name is unique and all radio in group has the same name. Then you can use jQuery support like that:
Note: Passing array is important. Conditioned version:
|
||||
|
|