Advertisement
ams0026

multisearch_ES.html

Mar 10th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. </head>
  5. <body style="background-color:grey">
  6.  
  7. <p>What Spanish word would you like to multisearch Anne? Type below, then press enter please.</p>
  8. <input type="text" id="boxu" autofocus>
  9.  
  10. <script>
  11. document.getElementById("boxu").onkeydown = function(e) {searchy(e)};
  12. function searchy(e)
  13. {
  14. if (e.which == 13)
  15. {
  16. var q = document.getElementById("boxu").value;
  17. window.open("https://es.wiktionary.org/wiki/" + q );
  18. window.open("http://www.spanishdict.com/examples/" + q);
  19. window.open("http://www.forvo.com/word/" + q + "/#es");
  20. window.open("http://www.google.com/search?tbm=isch&q=" + q + "&gws_rd=ssl");
  21. document.getElementById("boxu").value = "";
  22. }
  23. }
  24. </script>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement