Input als Link definieren
Nenad Matulic
- javascript
Hi
Kann mir jemand sagen wie ich ein input-feld als Link definiern kann? Beim ie funktioniert das auch im html
zb so:
<a href="http://www.../"...><input type="text" name="..."></a>
aber bei Netscape müsste man wahrscheinlich js verwenden auch eine andere ASP Lösung wäre sehr hilfreich
Danke
lg
Nenad
Hi,
ich würde dass so machen:
<input type="text" value="..." onclick="location.href='http://www...'">
MfG Simon
Oder gleich ein ganzes Formular:
<form action="http://www...">
<input type=submit value="...">
</form>
Schöne Weihnachten,
Ron