Published
- 1 min read
oncheck event jquery
The solution for this is noted below
oncheck event jquery
Solution
$(".checkbox").change(function() {
if(this.checked) {
//Do stuff
}
});
Try other methods by searching on the site. That is if this doesn’t work