Last active
May 6, 2017 19:32
-
-
Save ckschmieder/8a85dff4610dadbdef14a17c63108cc6 to your computer and use it in GitHub Desktop.
Validate a checkbox before submit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function(){ | |
$('#NationalPhotoMonth_submitButton').click(function() { | |
if(!$('#NationalPhotoMonth_Field_48').is(':checked')){ | |
alert('Not Checked'); | |
return false; | |
} | |
if($('#NationalPhotoMonth_Field_48').is(':checked')){ | |
alert('Checked - GO'); | |
return true; | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment