Advertisement
Guest User

Untitled

a guest
Jul 30th, 2014
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <!Doctype html>
  2. <html>
  3. <head>
  4. </head>
  5. <body>
  6. <input type="text" id="txtJob" value="software engineer">
  7. <button type="button" onclick="myFunction()">HERE</button>
  8. <script>
  9. function myFunction(){
  10. var id=document.getElementById("txtJob").value;
  11. document.write("<h1>"+id+"</h1>);
  12. }
  13. </script>
  14. </body>
  15. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement