Tobias: onClick --> go to URL

Beitrag lesen

ist das so jetzt richtiger?

<script type="text/javascript">
<!--
function Ziel()
{document.getElementById("1").x = url;
self.location.href = url;
}
//-->
</script>
<form>
<input name=x id="1" type="text" maxLength=256 size=55 value="www." tabindex="1">
<input type="button" name="goto" value="    Go    " onClick="Ziel();">

</form>