|
|
 |
| Javascript How-To Ask your "How do I do this with Javascript?" questions here. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Javascript How-To section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

June 24th, 2003, 10:32 AM
|
|
Registered User
|
|
Join Date: Jun 2003
Location: , , .
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
How do I open a Web page in full screen
I want to link to a page on our intranet
and want that page to open in full screen view.
How do I do this?
Thanks for the help.
|

June 24th, 2003, 10:38 AM
|
|
Authorized User
|
|
Join Date: Jun 2003
Location: , , .
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
<a href="#" onClick="window.open('yourURL.htm', '', 'fullscreen=yes'); return false">A link</a>
/Robert
|

June 24th, 2003, 10:43 AM
|
|
Authorized User
|
|
Join Date: Jun 2003
Location: Lexington, KY, USA.
Posts: 46
Thanks: 0
Thanked 1 Time in 1 Post
|
|
That will work for IE 4+.
I don't think it works in Netscape.
Don't know what you would do in NS.
:)
-Van
(Old dog learning new tricks...)
|

June 24th, 2003, 10:46 AM
|
|
Authorized User
|
|
Join Date: Jun 2003
Location: , , .
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
It'll work in Netscape 6+ (or at least 7+)...
Fullscreen is not possible in Netscape 4 (the closest to that is hiding the toolbar, address bar etc and set width to screen width and height to screen.height and then use the method window.moveTo(0, 0))...
/Robert
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |