kstoyanov

02. Notification

Oct 1st, 2020
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function notify(message) {
  2.     const messageDivElement = document.getElementById('notification');
  3.     messageDivElement.textContent = message;
  4.     messageDivElement.style.display = 'block';
  5.  
  6.     setTimeout(function () {
  7.         messageDivElement.style.display = 'none';
  8.     }, 2000);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment