javascript - Issues with loading page in IE asking to enable cookies -


i have form opens specific page in ie .cgi

/web/guest/en/websys/webarch/authform.cgi

please see post:

adding string end of submitted url?

<input type="text" name="prog_site" id="prog_site" value="http://" /> <a href="http://" onclick="this.href=document.getelementbyid('prog_site').value" target="_blank">let's go!</a> 

the above code input field opens new tabs submitted url , add on file ext provided. page requires cookies make work.

that code changes href attribute when clicked, late. consider

<input type="text" name="prog_site" id="prog_site" value="http://"         onkeyup="document.getelementbyid('href_target').href=this.value" /> <a id="href_target" href="http://" target="_blank">let's go!</a> 

Comments

Popular posts from this blog

How to mention the localhost in android -

php - Calling a template part from a post -

c# - String.format() DateTime With Arabic culture -