David
David

Reputation: 2423

Javascript open new window address bar still showing

Im having a problem where I click a link and it opens a new window in fullscreen mode, but the address bar is still showing which I don't want it to. Here is the code I have:

function fullScreen(theURL) {
   window.open(theURL, '', 'fullscreen=yes, scrollbars=1, toolbar=0, location=no');
}

Same problem in latest FF and IE8...

Upvotes: 0

Views: 849

Answers (1)

donohoe
donohoe

Reputation: 14123

It is no longer possible to do this in modern browsers for security reasons (people trying to trick users into thinking a web page is something its not).

Upvotes: 4

Related Questions