ahykes
Erfahrenes Mitglied
Hallo Freunde
Ich habe ein Problem :
Ich habe ein Formular mit einem Button und einem DropDown-Feld :
Nun möchte ich aber, dass wenn ich auf den Button drücke, NICHT die Action "xyp.php" ausgeführt wird ,sondern eben das was unter MouseDown steht. Wie kann ich das machen? 

Ich habe ein Problem :
Ich habe ein Formular mit einem Button und einem DropDown-Feld :
HTML:
<form name="form1" method="post" action="xyp.php">
<select name="select">
<option value="asda" selected>a</option>
<option value="fgdfg">s</option>
<option value="dfgdfg">df</option>
</select>
<input type="submit" name="start" value="starten" onMouseDown="location.href='abc.php'">
</form>
