HTML
=======
<input class="checkbox_check" id="chkfullorderid" type="checkbox" autocomplete="off">
Checked Condition
$('#chkfullorderid').prop('checked') == true){
alert('Check');
}
OR
if ($('input.checkbox_check').is(':checked'))
{
alert('Check');
}
Click Event a check <label>
<input class="checkhour" type="checkbox">One</label>
<label>
var clicked = false;
$(".checkall").on("click", function() {
$(".checkhour").prop("checked", !clicked);
clicked = !clicked;
});
Unchecked Condition$('#chkfullorderid').prop('checked') == false){
alert('Check');
}
OR
if ($('#chkfullorderid').not(':checked').length) {
alert('unchecked');
}
No comments:
Post a Comment
I am Safiqul Islam Tuhin