|
|
Java menu script>Menu Make>URL jump box Menu
|
| Description: Use
this script to allow your surfers to go to a url by typing it inside a form box, and
either pressing enter or the "Go!" button. Why use a form box when there is a
default location box on the top of your browser? Well, for one thing, it's more
interesting this way, and secondly, if you have a customized window opened that does not
have a location box present, this script is great as a substitute. |
<form name="jumpurl1"
onSubmit="return jumpit()">
<input type="text" size=30 name="jumpurl2"
value="http://">
<input type="button" value="Go!" onClick="jumpit()">
</form>
<script>
/*
URL jump box
By JavaScript Kit (http://javascriptkit.com)
Over 200+ free scripts here!
*/
function jumpit(){
window.location=document.jumpurl1.jumpurl2.value
return false
}
</script>
<p align="center"><font face="arial"
size="-2">This free script provided by</font><br>
<font face="arial, helvetica" size="-2"><a
href="http://javascriptkit.com">JavaScript
Kit</a></font></p> |
|
|
|
|