Friday, May 15, 2015

jQuery checkbox change and click event

<input type="checkbox" id="checkbox1" /> <br />
<input type="text" id="textbox1" />


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

    $('#checkbox1').change(function() {
        $('#textbox1').val(this.checked);
    });

    $('#checkbox1').click(function() {
        var self = this;
        setTimeout(function() {
           
            if (!self.checked) {
                var ans = confirm("Are you sure?");
                self.checked = ans;
                $('#textbox1').val(ans.toString());
            }
        }, 0);
    });
});

No comments:

Post a Comment