Guest User

Untitled

a guest
Mar 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  5. <script>
  6.  
  7. $(document).on('click','#massmodal', function() {
  8.  
  9. $(carousel).append("<br>Hello world!<br>como esta tu<br>");
  10.  
  11. });
  12. $(document).on('click','#reeplamodal', function() {
  13. $(carousel).replaceWith("<ul id='carousel'>Hello world!<br>como esta tu<br></ul>");
  14.  
  15. //para eliminar utilizar
  16. //$(carousel).remove();
  17.  
  18. });
  19. </script>
  20. </head>
  21. <body>
  22. <div>hola como esta tu
  23. <ul id="carousel">hola como esta tu</ul>
  24. </div>
  25.  
  26. <button id="massmodal">AƱadir</button>
  27. <button id="reeplamodal">replazar</button>
  28.  
  29. </body>
  30. </html>
Add Comment
Please, Sign In to add comment