Validate Check box
Validate check box using jquery
HTML
<button class="button">Validate me</button>
<input type="checkbox" class="chkbox" />
JavaScript
$(function(){
$(".button").click(function(){
if($(".chkbox").prop("checked")== false){
alert("Please check the box");
}
else{
alert ("Thank you");
}
});
})