Guest User

Untitled

a guest
May 11th, 2021
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.40 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>Тег IMG</title>
  6. </head>
  7. <body>
  8. <div id="elem"></div>
  9. <button class="btn">Кликни сюда</button>
  10. <script>
  11.     const elem = document.querySelector('#elem');
  12.     const button = document.querySelector('.btn');
  13.    
  14.     button.addEventListener('click', () => {
  15.         elem.classList.add('num1');
  16.     });
  17. </script>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment