Advertisement
Guest User

main.js

a guest
Nov 12th, 2014
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. interval = setInterval(function() {
  2.     $('.cookie-popup-wrap').fadeIn(600);
  3. },5000);
  4.  
  5. $('#closepopup').click(function (e) {
  6.     e.preventDefault();
  7.     $('.cookie-popup-wrap').fadeOut(600);
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement