Advertisement
Guest User

Untitled

a guest
Jan 13th, 2021
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <script>
  2. $(window).on('load', function() {
  3. if ($.cookie("closed_button") == null) {
  4. $('#newsletter-modal').modal('show');
  5. }
  6. });
  7.  
  8. $("#closed_button").click(function() {
  9. document.cookie = "closed_button=true; expires=Fri, 31 Dec 9999 23:59:59 UTC";
  10. });
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement