Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         //button for privacy page
  2.         $( "#decline-button" ).on('click', function() {
  3.  
  4.             //setting the cookies
  5.             $.cookie("cc_cookie_accept", null, {
  6.                 path: '/'
  7.             });
  8.             $.cookie("cc_cookie_decline", "cc_cookie_decline", {
  9.                 expires: $.cookieCuttr.cookieExpires,
  10.                 path: '/'
  11.             });
  12.             location.reload(); //reload the page
  13.         });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement