Guest User

Untitled

a guest
Jul 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <body>
  2. <textarea name="texto" id="texto">
  3. </textarea>
  4.  
  5. <button class="button button2" type="button1">Texto</button>
  6.  
  7. <script>
  8. var textarea = document.querySelector('textarea');
  9. var button1 = document.querySelector('button');
  10. var assinatura1 = 'TEXTO COLORIDO'
  11. button1.addEventListener('click', function() {
  12. textarea.value += assinatura1;
  13. });
  14. </script>
  15. </body>
Add Comment
Please, Sign In to add comment