HI,
I have two HTML pages, in the first page I call the second that have to appear in the same window, like this:
the third parameter (status=no), is to disable the status bar from the browser (IE 4.0), but that doesn't work...
why ???
is there a way to disable all the things in the window ???
if I open the second page on another window:
it work's fine...but I want the same window...!!! regards,
Bruno Loureiro
<brunoloureiro@usa.net>
I have two HTML pages, in the first page I call the second that have to appear in the same window, like this:
Code:
window.open("home.html", "_self", "status=no");
why ???
is there a way to disable all the things in the window ???
if I open the second page on another window:
Code:
window.open("home.html", null, "status=no");
Bruno Loureiro
<brunoloureiro@usa.net>