Friday, May 15, 2015

jquery check if checkbox checked or not

    $('#chkrefNo').change(function () {

                if ($(this).prop('checked') == true) {
                    alert('1');
                }
                else {
                    alert('2');
                }
            });

No comments:

Post a Comment