danielovich
danielovich

Reputation: 9687

fullscreen and no toolbars, scrollbars etc. with javascript. NOT window.open

How do I make the window I am standing in fullscreen and remove all toolbars etc. ?

Upvotes: 0

Views: 800

Answers (4)

Daggar
Daggar

Reputation: 144

What everyone else is saying: you can't do it reliably. The closest is the window.open controls as described here but even those are often shut off by default in some browsers.

Even if you find a way to do it, rest assured that it will be abused by spammers and shut down down soon after-- it's a significant security hole.

Upvotes: 1

Diodeus - James MacFarlane
Diodeus - James MacFarlane

Reputation: 114367

Internet explorer supports "kiosk mode". This may be what you want. I've used it on a few touch-screen applications and it works well for this purpose.

Upvotes: 0

Udo G
Udo G

Reputation: 13111

Ask your visitors to press F11 ;-)

Seriously, that isn't possible and should be avoided anyway.

Upvotes: 0

Guffa
Guffa

Reputation: 700322

You can't do that. You can only control (to some extent) which window components are visible for a window that you open using window.open.

Upvotes: 0

Related Questions