Skip to content

Instantly share code, notes, and snippets.

@ShuvoHabib
Created June 22, 2018 11:31
Show Gist options
  • Save ShuvoHabib/f1e06c47c9458a9296af2ee0c8772994 to your computer and use it in GitHub Desktop.
Save ShuvoHabib/f1e06c47c9458a9296af2ee0c8772994 to your computer and use it in GitHub Desktop.
Check Box onclick value change
$("#squaredTwo").click(function(){
if(jQuery(this).val() === "unchecked") {
$(this).attr('value', 'checked');
console.log(jQuery("#squaredTwo").val());
} else {
$(this).attr('value', 'unchecked');
console.log(jQuery("#squaredTwo").val());
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment