Guest User

Untitled

a guest
May 26th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. function ModalShow(){
  2. // When the user checks the checkbox...
  3. localStorage.setItem('checkbox', 'true');
  4.  
  5. // When a user visits the page...
  6. var checkbox = localStorage.getItem('checkbox');
  7. if ('checkbox'.checked == 'true') {
  8. $('#myModal').modal('hide')
  9. } else {
  10. $('#myModal').modal('show')
  11. }
  12.  
  13. }
  14.  
  15. // html
  16. <div class="modal-footer">
  17. <p>usual terms and conditions acceptance blah.</p><input id="checkbox" type="checkbox" class="agreement" required>
  18. <input type="submit" class="modal-button btn" data-dismiss="modal" value="Submit">
  19. </div>
  20. </div>
Add Comment
Please, Sign In to add comment