Advertisement
kstoyanov

03. Accordion

Sep 29th, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function toggle() {
  2.     const button = document.getElementsByClassName('button')[0];
  3.     button.textContent = button.textContent === 'More' ? 'Less' : 'More';
  4.  
  5.     const paragraph = document.getElementById('extra');
  6.     paragraph.style.display = paragraph.style.display === 'none' || !paragraph.style.display ? 'block' : 'none';
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement