Quote:
Originally Posted by Dragonsys
Code:
<head>
<script type="text/javascript">
function WebseiteAufrufen () {
window.open(href = document.getElementsByName("webseite")[0].value);
return false;
}
</script>
</head>
<body>
<form name="form1" action="#" onsubmit="return WebseiteAufrufen();" target="_blank">
<input type="text" name="webseite" size="50" />
<input type="submit" value=" GO! " />
</form>
</body>
|
Quote:
Originally Posted by shibby2
Hmm, works for me on your site, but not mine. :/
I copied the code right from your site, and will replace it with my code and see if that makes a difference.
Thanks!
|
Hey shibby2, try this.
Add the
head code above to your header template and add the
body code to the template you want the URL input box to show,
both without the head and body brackets.