Hallo,
hier mal meine Form:
Und wenn ich dann da raufklicke, dann meldet mir die Javascript Konsole von Firefox:
Error: document.myForm.submit is not a function
Das selbe passiert wenn ich "document.getElementById('myForm').submit()" mache:
Error: document.getElementById("myForm").submit is not a function
Habe sonst nichts was das selbe id oder namensattribut hat wie meine form. Im IE sendet er das script auch nicht ab. reset() allerdings funktioniert statt submit()... ?
hier mal meine Form:
Code:
<form action="test.html" method="post" name="myForm" id="myForm"> <input type="button" value="Ändern" onclick="document.myForm.submit();" /> </form>
Error: document.myForm.submit is not a function
Das selbe passiert wenn ich "document.getElementById('myForm').submit()" mache:
Error: document.getElementById("myForm").submit is not a function
Habe sonst nichts was das selbe id oder namensattribut hat wie meine form. Im IE sendet er das script auch nicht ab. reset() allerdings funktioniert statt submit()... ?
Kommentar