calebface
calebface

Reputation: 35

Open up link in new window maximised

Does anyone know how to open up a new window but in maximised format (spec. in IE7 and IE6)? Javascript methods are OK in this instance too.

Upvotes: 0

Views: 216

Answers (1)

rahul
rahul

Reputation: 187110

Use

window.open

and use the

fullscreen

option.

But before doing that read this also

Note on fullscreen

Example

var WindowObjectReference;

function openRequestedPopup()
{
  WindowObjectReference = window.open("http://www.domainname.ext/path/ImageFile.png",
                  "DescriptiveWindowName",
                  "resizable=yes,scrollbars=yes,status=yes,fullscreen=yes");
}

Upvotes: 1

Related Questions