Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public Boolean visibleSubmit { get; set; }
  2.  
  3. function termsAccepted() {
  4. if (document.getElementById('tncs').checked) {
  5. visibleSubmit = true;
  6. } else {
  7. alert("You did not accept the terms and conditions.");
  8. visibleSubmit = false;
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement