Navigate to a URL
Please enter a link in the text box above to navigate to a URL.
<!-- The following Code goes in the header of your page --> <SCRIPT LANGUAGE="JavaScript"> <!-- function Jump() { window.location.href = document.form1.text1.value; } // --> </SCRIPT> <!-- The following Code goes in the body of your page --> <FORM NAME = "form1"> <br> <INPUT TYPE = "TEXT" NAME="text1" SIZE ="50" VALUE="http://"> <INPUT TYPE = BUTTON VALUE="Navigate to a URL" ONCLICK="Jump();"> </FORM>