Created
May 8, 2017 04:31
-
-
Save ckschmieder/ed539e9bcd8ca048fbc8d04fb77be0e9 to your computer and use it in GitHub Desktop.
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() { | |
$("#UserContentSubmissionForm_submitButton").click(function(event) { | |
if (!$("#UserContentSubmissionForm_Field_47").is(":checked")) { | |
event.stopImmediatePropagation(); | |
alert('You must agree to the Terms and Conditions!'); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment