Advertisement
Guest User

Untitled

a guest
Feb 14th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("#show_more").click(function(){
  8. $("#show_here").append(" <b>Appended text</b>.");
  9. });
  10.  
  11. });
  12. </script>
  13. </head>
  14. <body>
  15. <div id="show_here"></div>
  16.  
  17. <button id="show_more">Append text</button>
  18.  
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement