In JavaScript, if we write the following for example:
var c = this.checked;
What is checked here? Is it just a state>
checked
To use the pseudo selector :checked with the jquery object this write:
:checked
this
$(this).is(':checked')