Click here to Skip to main content
15,886,095 members
Articles / Programming Languages / Javascript
Tip/Trick

How to open your web application in Full Screen mode in IE

Rate me:
Please Sign up or sign in to vote.
4.80/5 (2 votes)
11 Jun 2013CPOL 20.5K   3   1
Trick to open your web application in full screen mode in IE.

Background

Today I was converting an old Windows based application to a web application and I thought of giving users the same feel as if they are using a Windows application. Thus I came to the requirement of opening a web application in full screen mode. I found a very elegant solution that I am sharing here.

Using the Code

Create a start page in your web application and set it as the startup page. In the start page, add the following Javascript. This script basically opens the web page in full screen mode and closes and starts the original start page.

JavaScript
<script language="javascript" type="text/javascript">
window.open("Login.aspx", "secondWindow", 
  "fullscreen,scrollbars='yes',statusbar='yes',location='no'").focus();

//set new window as the opener to bypass alert
window.opener = 'secondWindow';

//close original window that was the inital opener without alert
window.self.close();
</script>  

Points of Interest

  • This works perfectly in IE. 
  • In Firefox it does not get rid of the address bar.
  • In Google Chrome this does not work as it shows a popup blocker message.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Australia Australia
I am currently working as a Software Developer in .NET technologies.

Languages & Technologies I have worked on so far:

Pascal ... My first programming language..baby steps..
8085 Assembler ... Amazing how it all works internally in computer brain... "intel inside"
C... missing my point(er)....
C++... Its all about classes ...
LISP ... Did I missed any parenthesis ?
VB... Oh dear... Just like a war stories.. those are the days
Java... I learn to program this in notepad...
C#... Oh what a smooth sailing...
ASP.NET... web is the future ...
Oracle ... Not the one from "The Matrix"...
MSSQL... select Programming from Universe where StartTime >='BigBang'
Wireless Sensor Networks ... Look who is talking too ?

Comments and Discussions

 
GeneralMy vote of 4 Pin
Jhonathan Izquierdo11-Jun-13 4:31
Jhonathan Izquierdo11-Jun-13 4:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.