Wrox Programmer Forums
|
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 Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 17th, 2006, 01:42 AM
Registered User
 
Join Date: Apr 2005
Posts: 352
Thanks: 14
Thanked 0 Times in 0 Posts
Send a message via Yahoo to rupen
Default Full Screen Popup...

I have used below code to show full screen window
-------------------
<script type="text/javascript">
function showwin()
{
    var x;
    x = window.open("welcome.asp","Welcome","fullscreen=ye s;scrollbars=yes;resizable=no;");
}
----------------------
It works fine at some machines while somewhere it dosen't shows scrollbars and shows title bar in popup window...
any idea why so????


Rupen Anjaria.:)
------------------
We CAN'T avoid problems, but can solve it.
 
Old October 20th, 2006, 11:23 AM
Authorized User
 
Join Date: Jan 2006
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts
Default

All the examples I've seen would write the attributes like this:

    
Code:
fullscreen=yes,scrollbars=yes,resizable=no


not this:

    
Code:
fullscreen=yes;scrollbars=yes;resizable=no;


N.B. with a comma separating, not a semi-colon terminating. So maybe that's the problem.
 
Old October 23rd, 2006, 07:12 AM
Registered User
 
Join Date: Apr 2005
Posts: 352
Thanks: 14
Thanked 0 Times in 0 Posts
Send a message via Yahoo to rupen
Default

yeah!!!! correct

Rupen Anjaria.:)
------------------
We CAN'T avoid problems, but can solve it.
 
Old November 1st, 2006, 03:34 AM
Friend of Wrox
 
Join Date: Oct 2003
Posts: 479
Thanks: 0
Thanked 3 Times in 3 Posts
Send a message via MSN to surendran Send a message via Yahoo to surendran
Default

hai,
i have a problem with related to this,
with corect code, when i try local machine it is working fine, but when i try online it is not covering full screen, is there any security resion they are restected???

surendran
(Anything is Possible)
http://ssuren.spaces.msn.com





Similar Threads
Thread Thread Starter Forum Replies Last Post
form diplay in full screen mateenmohd Access 2 November 15th, 2007 08:26 AM
Full screen watashi C# 2005 4 August 7th, 2007 01:05 AM
full screen mode in mozilla pannet1 BOOK: Professional JavaScript for Web Developers ISBN: 978-0-7645-7908-0 0 July 12th, 2007 08:11 AM
web pages in full screen sbjr01 BOOK: Beginning Access VBA 0 February 17th, 2006 05:16 PM
Full Screen surendran Flash (all versions) 1 August 3rd, 2004 07:41 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.