Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html>
  4. <body>
  5.  
  6. <h2>Suora linkki sivulle</h2>
  7.  
  8. <form>
  9. Syötä nimi:<br>
  10. <input type="text" id="numerot">
  11. <br />
  12. <input type="button" onClick="hae()" value="Hae"/>
  13. <br />
  14. <input type="button" onClick="haeIkkuna()" value="Hae uudella ikkunalla"/>
  15.  
  16. <br>
  17. </form>
  18. <script>
  19. function hae() {
  20. document.location.href = 'http://www.paska.com/' + document.getElementById("numerot").value
  21. }
  22.  
  23. function haeIkkuna() {
  24. window.open('https://www.paska.com/' + document.getElementById("numerot").value, '_blank');
  25. }
  26.  
  27.  
  28. </script>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement