Advertisement
-Annie-

02.ShowMore

Jun 26th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Homework-DOM</title>
  6. </head>
  7.  
  8. <body>
  9. Welcome to the "Show More Text Example".
  10. <a href="#" id="more" onclick= "showText()">Read more …</a>
  11. <span id="text" style= "display:none">Welcome to JavaScript and DOM.</span>
  12. <script>
  13. function showText() {
  14. let text = document.getElementById('text');
  15. text.style.display = 'inline';
  16. let moreButton = document.getElementById('more');
  17. moreButton.style.display = 'none';
  18. }
  19. </script>
  20.  
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement