You are here: irt.org | FAQ | JavaScript | Link | Q455 [ previous next ]
Say you had a page at http://somewhere.com/apage.html and say that you wanted to display a page at http://somegoddamnawfulurl/somepage.html but hide that ugly url, then in apage.html do something like:
<FRAMESET ROWS="100%,*"> <FRAME SRC="http://somegoddamnawfulurl/somepage.html"> <FRAME SRC="blank.html"> </FRAMESET>
and then in blank.html:
<BODY></BODY>
This way the location bar shows http://somewhere.com/apage.html and hides the other.