Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. <title>add demo</title>
  5.  
  6. <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
  7. </head>
  8. <body>
  9.  
  10. <h1 class='Titulo'>Titulo</h1>
  11.  
  12. <button title="Meu Novo Titulo">CLique aqui</button>
  13.  
  14. <script>
  15.  
  16. $('button').click(function(){
  17.  
  18. var titulo = $(this).attr('title');
  19.  
  20. $('.Titulo').text(titulo);
  21. });
  22.  
  23. </script>
  24.  
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement