Advertisement
ErolKZ

Untitled

Mar 6th, 2022
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. moreBtnElement1.addEventListener('click', (e) => {
  2.  
  3. if (e.currentTarget.textContent === 'MORE') {
  4.  
  5. console.log('first');
  6.  
  7. e.currentTarget.textContent = 'LESS';
  8.  
  9. divExtra2.style.display = 'inline-block';
  10.  
  11. } else {
  12.  
  13. e.currentTarget.textContent = 'MORE';
  14.  
  15. divExtra2.style.display = 'none';
  16.  
  17. }
  18.  
  19. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement