Avid users or HTML/Java, code question.
Ok, here's the predicament. My friend and I are real lazy and hate having to type in our whole e-mail and password to get into MySpace. Well, he came up with some code in the form of an html link that automatically fills in the fields for you, leaving you with only having to click submit. We're trying to figure out how to cut having to click submit out of the equation. The code we have so far is as follows:
<html>
<body>
<img src="http://x.myspace.com/images/blog/blogLogo.gif">
<br>
<form action="http://viewmorepics.myspace.com/index.cfm?fuseaction=login.process" method="post" name="theForm" id="theForm">
<input type="text" name="email" value="LOGIN" size="20">
<input type="password" name="password" size="20" value="PASSWORD">
<input name="Submit22" type="submit" value="Submit">
</body>
</html>
Anyone have any ideas using Java or HTML?
Edit: Thread title should be "Avid users OF HTML/Java, code question."
<html>
<body>
<img src="http://x.myspace.com/images/blog/blogLogo.gif">
<br>
<form action="http://viewmorepics.myspace.com/index.cfm?fuseaction=login.process" method="post" name="theForm" id="theForm">
<input type="text" name="email" value="LOGIN" size="20">
<input type="password" name="password" size="20" value="PASSWORD">
<input name="Submit22" type="submit" value="Submit">
</body>
</html>
Anyone have any ideas using Java or HTML?
Edit: Thread title should be "Avid users OF HTML/Java, code question."
Originally Posted by HAN Frodo
i had a question sort of similar to this the other day. but i can't answer your question
Ah yes, I've got it. The Javascript is as follows:
<SCRIPT language="JavaScript">
function submitform()
{
document.theForm.submit();
}
</SCRIPT>
</head>
<body onLoad="submitform();">
<SCRIPT language="JavaScript">
function submitform()
{
document.theForm.submit();
}
</SCRIPT>
</head>
<body onLoad="submitform();">
Originally Posted by Pete
Ok, here's the predicament. My friend and I are real lazy and hate having to type in our whole e-mail and password to get into MySpace. Well, he came up with some code in the form of an html link that automatically fills in the fields for you, leaving you with only having to click submit. We're trying to figure out how to cut having to click submit out of the equation. The code we have so far is as follows:
<html>
<body>
<img src="http://x.myspace.com/images/blog/blogLogo.gif">
<br>
<form action="http://viewmorepics.myspace.com/index.cfm?fuseaction=login.process" method="post" name="theForm" id="theForm">
<input type="text" name="email" value="LOGIN" size="20">
<input type="password" name="password" size="20" value="PASSWORD">
<input name="Submit22" type="submit" value="Submit">
</body>
</html>
Anyone have any ideas using Java or HTML?
Edit: Thread title should be "Avid users OF HTML/Java, code question."
<html>
<body>
<img src="http://x.myspace.com/images/blog/blogLogo.gif">
<br>
<form action="http://viewmorepics.myspace.com/index.cfm?fuseaction=login.process" method="post" name="theForm" id="theForm">
<input type="text" name="email" value="LOGIN" size="20">
<input type="password" name="password" size="20" value="PASSWORD">
<input name="Submit22" type="submit" value="Submit">
</body>
</html>
Anyone have any ideas using Java or HTML?
Edit: Thread title should be "Avid users OF HTML/Java, code question."
{ http://viewmorepics.myspace.com/inde...ubmit22=Submit }
try to cut and paste that into your browser, change the EMAIL & PASSWORD to match your info... let me know if it works.



h: