Answers for "input radio change value"

5

change on radio button

$('input[type=radio][name=bedStatus]').change(function() {
    if (this.value == 'allot') {
        alert("Allot Thai Gayo Bhai");
    }
    else if (this.value == 'transfer') {
        alert("Transfer Thai Gayo");
    }
});
Posted by: Guest on April-30-2020
0

set radio button group value

var value = 5;
$("input[name=mygroup][value=" + value + "]").attr('checked', 'checked');
Posted by: Guest on May-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language