Guest User

Untitled

a guest
Jun 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. const showMsg = localStorage.getItem('showMsg');
  2.  
  3. if(showMsg === 'false'){
  4. $('#alert').hide();
  5. }
  6.  
  7. $('.closebtn').on('click', function(){
  8. $('#alert').fadeOut('slow');
  9. localStorage.setItem('showMsg', 'false');
  10. });
  11.  
  12. if(showMsg === 'false'){
  13. $('.alert').hide();
  14. } else {
  15. $('.alert').delay(1000).fadeIn();
  16. }
Add Comment
Please, Sign In to add comment