“JQuery Checkbox mudou o evento” Respostas de código

JQuery Checkbox mudou o evento

//jQuery listen for checkbox change
$("#myCheckBoxID").change(function() {
    if(this.checked) {
        //I am checked
    }else{
        //I'm not checked
    }
});
Grepper

JQuery Watch Checking Change

$('input[type="checkbox"]').change(function() {
    alert ("The element with id " + this.id + " changed.");
});
Frail Fowl

Respostas semelhantes a “JQuery Checkbox mudou o evento”

Perguntas semelhantes a “JQuery Checkbox mudou o evento”

Mais respostas relacionadas para “JQuery Checkbox mudou o evento” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código