Answers for "jquery on change display input checkbox"

4

change checkbox jquery alert

$(document).ready(function() {
    //set initial state.
    $('#textbox1').val($(this).is(':checked'));

    $('#checkbox1').change(function() {
        if($(this).is(":checked")) {
            var returnVal = confirm("Are you sure?");
            $(this).attr("checked", returnVal);
        }
        $('#textbox1').val($(this).is(':checked'));        
    });
});
Posted by: Guest on May-16-2020
0

change checkbox jquery alert

$('#checkbox1').mousedown(function() {
    if (!$(this).is(':checked')) {
        this.checked = confirm("Are you sure?");
        $(this).trigger("change");
    }
});
Posted by: Guest on September-23-2020

Code answers related to "jquery on change display input checkbox"

Code answers related to "Javascript"

Browse Popular Code Answers by Language