Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2.     <b id="testo">Hello Word!!</b>
  3.     <input id="input" type="text" style="width: 200px;">
  4.     <button onclick="stampa()">Stampa</button>
  5.     <script>
  6.         function stampa(){
  7.             document.getElementById(input).value=document.getElementById(testo).innerHTML;
  8.         }
  9.     </script>
  10. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement