Guest User

Untitled

a guest
Jan 17th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <div id="cookie-alert" data-expire="30" class="alert alert-primary alert-position-bottom">
  2. <div class="container">
  3.  
  4. <button type="button" class="close" data-dismiss="alert">
  5. <span class="cookie-close-btn" aria-hidden="true">×</span>
  6. <span class="sr-only">Close</span>
  7. </button>
  8.  
  9. <p class="fs-13">
  10. <i class="fa fa-warning"></i>
  11.  
  12. We use cookies to provide you with a better service.
  13. Carry on browsing if you're happy with this, or find out how to
  14. <a href="#">manage cookies</a>.
  15. </p>
  16.  
  17. </div>
  18. </div>
  19.  
  20. #cookie-alert{
  21. display:none;
  22. }
  23.  
  24. (function(){
  25. setTimeout(showAlert, 2000)
  26. })();
  27.  
  28.  
  29. function showAlert()
  30. {
  31. document.getElementById("cookie-alert").style.display = "block";
  32. }
Add Comment
Please, Sign In to add comment