I need some help. To start out, I just strated learning Javascript about a week ago, and I am starting to understand it as the days go on. My question is this, I need to pass a User Name and Password throught the URL. Now I know this is easy with some URL's, but I seem to be having a hard time with it.
"
So far I have writen a javascript function to create the URL in the format that it needs to be.
function logon(){
var url = " + document.form2.username.value ;
url += "&Password=" + document.form2.password.value ;
document.url=;
This is about as far as I can get. If I use "alert(acct);" at the end of the function, I get a pop-up with the correct format and anything. What I really need help with is, How do I launch this URL?
Sorry if I dont make sense.
Thank you,
Jason Ray
"
So far I have writen a javascript function to create the URL in the format that it needs to be.
function logon(){
var url = " + document.form2.username.value ;
url += "&Password=" + document.form2.password.value ;
document.url=;
This is about as far as I can get. If I use "alert(acct);" at the end of the function, I get a pop-up with the correct format and anything. What I really need help with is, How do I launch this URL?
Sorry if I dont make sense.
Thank you,
Jason Ray