Skip to content

Instantly share code, notes, and snippets.

@andyf-7
Created May 3, 2015 11:08
Show Gist options
  • Save andyf-7/932f5d9e21c4a4a5e634 to your computer and use it in GitHub Desktop.
Save andyf-7/932f5d9e21c4a4a5e634 to your computer and use it in GitHub Desktop.
jquery check box checked
if($(".clschekbox").is(':checked')!=true)
{
alert("Please Select Checkbox");
}
else
{
var clientid =[];
$('input[name="clientid[]"]').each(function () {
if($(this).is(':checked')==true) {
clientid.push(this.value);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment