Guest User

Untitled

a guest
Nov 18th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <button>Switch it</button>
  2. <p>Awesome</p>
  3.  
  4. <script>
  5.  
  6. var btn = document.querySelector('button');
  7. var txt = document.querySelector('p');
  8.  
  9. btn.addEventListener('click', updateBtn);
  10.  
  11. function updateBtn() {
  12. if (txt.textContent === 'Awesome') {
  13. txt.textContent = 'It\'s Not Awesome';
  14. } else {
  15. txt.textContent = 'Awesome';
  16. }
  17. }
  18.  
  19. </script>
Add Comment
Please, Sign In to add comment