Valeri173

gui 5

Nov 28th, 2021
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>ShowMore</title>
  8. </head>
  9. <body>
  10. <p>
  11. Welcome to the "Show More Text Example".
  12. <a href="#" id="more" onclick= "showText()">Read more …</a>
  13. <span id="text" style= "display:none">Welcome to JavaScript and DOM.</span>
  14. </p>
  15.  
  16. <script>
  17.  
  18. function showText() {
  19. document.getElementById("text").style.display = "inline";
  20. document.getElementsById("more").style.display = "none";
  21. }
  22.  
  23. </script>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment