Like this:
alert("Please press F11");
It is not possible to fully create a full-screen window in Javascript.
The closest thing you can do is to open a pop-up window and pray that it is not blocked by pop-up blockers, for example:
open("http://google.com", null,
"height=" + screen.availHeight + ",width=" + screen.availWidth + ",status=no,toolbar=no,menubar=no,location=no")
source
share