jquery if input is a checkbox code example
Example 1: checkbox is checked jquery
$(your_checkbox).is(':checked');
Example 2: jquery check if type is checkbox
$('#myinput').is(':checkbox')
$(your_checkbox).is(':checked');
$('#myinput').is(':checkbox')