Advertisement
bobo_bobkata

Untitled

Oct 10th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function notify(message) {
  2. let notification = document.getElementById("notification");
  3. notification.innerHTML = message;
  4. notification.style.display = "block";
  5. setTimeout(function () {
  6. notification.style.display = "none";
  7. }, 2000);
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement