|
-
Apr 4th, 2003, 05:04 AM
#1
Thread Starter
Junior Member
how to modify browser's appearance
Hello
I want that when user opens a new window, browser does not display any menubar, browser buttons etc. How can I do this? I don't much know about javascript, so I would need the whole code to add to html file.
Thank you in advance. I'd appreciate it a lot.
-
Apr 5th, 2003, 02:49 PM
#2
Addicted Member
Ok. Try this:
Code:
<html>
<head>
<script type="text/javascript" language="javascript">
function bye() {
self.opener=this;
self.close();
}
function load_and_close() {
window.open("C:\\WINDOWS\\Desktop\\testing.htm", "NewWin", "Fullscreen");
bye();
}
</script>
</head>
<body onload="load_and_close()"></body>
</html>
Good Luck.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|