chartrandi
05-27-2004, 01:10 PM
Hi,
I have this code that can be used to simulate the F11 function in the Internet Explorer.
<script type="text/javascript">
function F11() {
window.open("page.html", "", "channelmode");
}
</script>
and you call it by adding this to a html link :
<a href="javascript:F11()">click here to open in channelmode</a>
or
<body onload="javascript:F11()">
the problem is that when the function was written, , it said to open "page.html" in channel mode. I want to open the page itself in channelmode onload... not "page.html" how can I modify the function?
something like...window self open! :)
thanks
I have this code that can be used to simulate the F11 function in the Internet Explorer.
<script type="text/javascript">
function F11() {
window.open("page.html", "", "channelmode");
}
</script>
and you call it by adding this to a html link :
<a href="javascript:F11()">click here to open in channelmode</a>
or
<body onload="javascript:F11()">
the problem is that when the function was written, , it said to open "page.html" in channel mode. I want to open the page itself in channelmode onload... not "page.html" how can I modify the function?
something like...window self open! :)
thanks