set radio button checked jquery
$(".nameOfTheClass").prop('checked', true);
set radio button checked jquery
$(".nameOfTheClass").prop('checked', true);
change selected radio jquery
Say you had radio buttons like these, for example:
<input type='radio' name='gender' value='Male'>
<input type='radio' name='gender' value='Female'>
And you wanted to check the one with a value of "Male" onload if no radio is
checked:
$(function() {
var $radios = $('input:radio[name=gender]');
if($radios.is(':checked') === false) {
$radios.filter('[value=Male]').prop('checked', true);
}
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us