I don’t want any other navigation when this page launches just the page showing itself. No tool bars, address bars, file menu…noting…very similar to what you see if you get a pop up ad. I’m writing a web based program in standard HTML and want it to launch in the simplest browser page i can.
<script type="text/javascript" language="JavaScript">
// when page load //
onload = funex
function funex()
{
window.open("toolbar.html",’My Webpage!!’,'width=200;height=300′);
}
</script>
another linked page you can open using onclick also but i think it is not possible for first page without link.
Madan Sapkota | Kathmandu, Nepal
20.April, 2010 um 1:46 pm
Press F11, it works with Opera and Internet Explorer
References :
20.April, 2010 um 2:17 pm
<script type="text/javascript" language="JavaScript">
// when page load //
onload = funex
function funex()
{
window.open("toolbar.html",’My Webpage!!’,'width=200;height=300′);
}
</script>
another linked page you can open using onclick also but i think it is not possible for first page without link.
Madan Sapkota | Kathmandu, Nepal
References :
Madan Sapkota | Kathmandu, Nepal