Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Q1193 Using Microsoft Internet Explorer, how can I open a full screen window when a link is clicked?

irt.org | Knowledge Base | JavaScript | Window | Q1193 [ previous next ]

Q1193 Using Microsoft Internet Explorer, how can I open a full screen window when a link is clicked?

Try:

<script language="JavaScript"><!--
function full(url) {
    if (document.all) {
        window.open(url,'windowName','fullscreen=yes');
        return false;
    }
    return true;
}
//--></script>

<a href="default.htm" onClick="full(this.href)">Open full screen</a>

Feedback on 'Q1193 Using Microsoft Internet Explorer, how can I open a full screen window when a link is clicked?'


Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 30th March 2008. Maintained by: Martin Webb and Michel Plungjan
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.