|
-
Dec 21st, 2005, 02:48 PM
#1
Thread Starter
Registered User
-
Dec 21st, 2005, 03:40 PM
#2
Member
Re: I want a Full size window in a webbrowser
If you want it to not have anything but the display section (meaning no title bar) then you can do three things:
1. use the fullscreen attribute(mainly works for IE . . . not FF or Opera):
window.open(URL, '', 'fullscreen=yes, scrollbars=auto');
2. Create a user defined window. This means that the user chooses to have no titlebar or menu or anything like that.
3. Use DHTML.
However if you want to keep the titlebar the just create a popup:
Code:
window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=780,height=780');");
where URL is replaced with the page that you want to open
Last edited by konithomimo; Dec 21st, 2005 at 03:43 PM.
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
|