Forum Moderators: open

Message Too Old, No Replies

Please help with a re-direct

redirect with address window gone

         

leviathan9821

2:00 pm on Feb 19, 2005 (gmt 0)

10+ Year Member



I have searched the net and havent found an answer I can use. I was then refered here so I hope someone can help.
I need to make a redirect page. The page that it redirects to should not have the Address bar. It can have anything else....but not the address bar. Is this possible? if so how?
thank you

wyweb

2:22 pm on Feb 19, 2005 (gmt 0)



<META HTTP-EQUIV="refresh" content="0; url=http://www.url.com">

or:

<BODY Onload="go_redirect()">
<script language=javascript>
<!--//
var url="http://www.url.com";
function go_redirect() {
location.href=url;
}
//-->
</script>

leviathan9821

2:36 pm on Feb 19, 2005 (gmt 0)

10+ Year Member



tried both of them and both still had the address bar when redirected. I need for the address bar to not be visable

dcrombie

3:14 pm on Feb 19, 2005 (gmt 0)



You can't remove any 'chrome' from the existing browser window. You only control those features on windows that are opened (using JavaScript) from within your site.