Javascript examples for DOM HTML Element:Input Text
Read value in textbox and add some extension
<html> <head></head> <body> <input type="text" id="txt"> <input type="button" onclick="redirect()" value="redirect"> <script type="text/javascript"> function redirect() {//from ww w.j a v a 2s . c o m var url = document.getElementById("txt").value; window.location.href = url + "html"; } </script> </body> </html>