Advertisement
Guest User

Untitled

a guest
Feb 6th, 2020
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. function notify(message) {
  2.  
  3. let $notif = document.getElementById('notification');
  4. $notif.textContent = message;
  5. let $button = document.getElementsByTagName('button');
  6. $notif.style.display = 'none'
  7. $button.addEventListener('click', function(){
  8.  
  9. $notif.setTimeout(() => {
  10. $notif.style.display = 'block'
  11. }, 2000);
  12.  
  13. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement