How automatically fill a form with jQuery ?
Posted
by Shady
on Stack Overflow
See other posts from Stack Overflow
or by Shady
Published on 2010-04-29T23:08:10Z
Indexed on
2010/04/29
23:17 UTC
Read the original article
Hit count: 385
jQuery
|greasemonkey
Hi,
I have a website that changes his inputs ids, and I'm trying to make a semi auto-login, filling automatically the email and the password part...
I'm doing this with greasemonkey and jQuery...
I'm trying something like this
$("input[@type=text]").setValue("[email protected]");
but had no success... The Page has only the login part, two text type inputs...
What am I missing here?
© Stack Overflow or respective owner