mhamed
Advanced Member level 4
I have asked this question in Network section but no reply was sent. So I decided to ask it here that may some javascript programmer see this:
The question is how to submit a form (especially username/password forms) when the web has used javascript.
In simple HTML programming you can send the information of a box using “?” mark after the address. For example you can fill out mail.yahoo.com form using:
https://login.yahoo.com/config/login?login=username&passwd=password
just substitute username and password with your Y! account. But I have noticed that some page has used javascript for form submittion. They has written something like this:
<script>
function callme(){
document.forms.frm1.submit();
}
Unfortunately what I have mentioned above does not work with these web pages. Is there any idea to fill their forms automatically.
The question is how to submit a form (especially username/password forms) when the web has used javascript.
In simple HTML programming you can send the information of a box using “?” mark after the address. For example you can fill out mail.yahoo.com form using:
https://login.yahoo.com/config/login?login=username&passwd=password
just substitute username and password with your Y! account. But I have noticed that some page has used javascript for form submittion. They has written something like this:
<script>
function callme(){
document.forms.frm1.submit();
}
Unfortunately what I have mentioned above does not work with these web pages. Is there any idea to fill their forms automatically.