If you use frames, then the URL in the address bar would be only of the main page which accommodates all the frames. But getting the URL of the page inside the frame is not too difficult.
Alternatively if you use the tag then I **suppose** the address bar would only be displaying the URL of the page from which request was forwarded, but this is only a guess.
stephen84s
Nearly a Posting Virtuoso
1,443 posts since Jul 2007
Reputation Points: 668
Solved Threads: 154
Well I have another suggestion, if you are opening a new browser window via Javascript why don't you just hide the address bar in the pop up ??
stephen84s
Nearly a Posting Virtuoso
1,443 posts since Jul 2007
Reputation Points: 668
Solved Threads: 154
Look here for more info on that.
stephen84s
Nearly a Posting Virtuoso
1,443 posts since Jul 2007
Reputation Points: 668
Solved Threads: 154
Yes that is strange, try setting the "title" in the called URL / web page, to override the address from being displayed in the title bar.
stephen84s
Nearly a Posting Virtuoso
1,443 posts since Jul 2007
Reputation Points: 668
Solved Threads: 154
Well yes it seems strange, BTW did you try setting the title of the pop up window using the title tag (), in the page(JSP, Servlet, etc) which you wish to open in this pop up window.
stephen84s
Nearly a Posting Virtuoso
1,443 posts since Jul 2007
Reputation Points: 668
Solved Threads: 154
The following code snippet opens the a new Pop up window, with the specified title in the child window.
File : popupparent.html
<html>
<head>
<script language="javascript">
function openPopUp() {
window.open("popupchild.html");
}
</script>
</head>
<body>
<a href="javascript:openPopUp()">HERE</a>
</body>
</html>
File : popupchild.html
<html>
<head>
<title>HELLO</title>
</head>
</html>
Title of the new Window was "HELLO"
stephen84s
Nearly a Posting Virtuoso
1,443 posts since Jul 2007
Reputation Points: 668
Solved Threads: 154