how to check check box using jquery code example
Example 1: check a checkbox jquery
$('#grepperRocks').prop('checked', true);
Example 2: jquery check if type is checkbox
$('#myinput').is(':checkbox')
$('#grepperRocks').prop('checked', true);
$('#myinput').is(':checkbox')