Advertisement
Pijomir

asd

Feb 4th, 2024
542
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function notify(message) {
  2.   let notifyButtonRef = document.getElementById('content').querySelector('button');
  3.   let notificationDivRev = document.getElementById('notification');
  4.   notificationDivRev.textContent = message;
  5.   notifyButtonRef.addEventListener('click', onclick);
  6.  
  7.   function onclick(event) {
  8.     notificationDivRev.style.display === 'none' ? notificationDivRev.style.display = 'inline' : notificationDivRev.style.display = 'none';
  9.   }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement