.submit() doesn't work with Firefox and Greasemonkey...
Posted
by Shady
on Stack Overflow
See other posts from Stack Overflow
or by Shady
Published on 2010-03-19T03:51:48Z
Indexed on
2010/03/19
4:01 UTC
Read the original article
Hit count: 697
JavaScript
|greasemonkey
I'm trying to make an auto login script and I'm stuck on the submit part...
The source of the submit form from the website is
<input type="submit" value="Sign In" class="signin" id="sumbitLogin">
and I'm trying
document.getElementById("sumbitLogin").submit();
if I set an Attribute, for example the value, it changes just fine...
How can I solve it?
© Stack Overflow or respective owner