“Onchange Radio Button jQuery Ajax” Código de respuesta

En el botón de radio cambia jQuery

$('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");
    }
});
Embarrassed Eagle

Onchange Radio Button jQuery Ajax

$('input[type=radio][name=gender]').change(function() {
    if (this.value == 1) {
        alert("Select Male");
    }else if (this.value == 2) {
        alert("Select Female");
    }
});
masterDev

Respuestas similares a “Onchange Radio Button jQuery Ajax”

Preguntas similares a “Onchange Radio Button jQuery Ajax”

Más respuestas relacionadas con “Onchange Radio Button jQuery Ajax” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código