Answers for "select radio by jquery"

0

jquery select radio by name

$("input[type='radio'][name='theme']").click(function() {
    var value = $(this).val();
});
Posted by: Guest on April-11-2020
-1

Select radio button through JQuery

$("#radio_1").prop("checked", true);
Posted by: Guest on January-17-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language