Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- $(window).on('load', function() {
- if ($.cookie("closed_button") == null) {
- $('#newsletter-modal').modal('show');
- }
- });
- $("#closed_button").click(function() {
- document.cookie = "closed_button=true; expires=Fri, 31 Dec 9999 23:59:59 UTC";
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement