Answers for "input type="radio" change checked"

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

Code answers related to "input type="radio" change checked"

Code answers related to "Javascript"

Browse Popular Code Answers by Language