Reputation: 53
Default popup.html of Chrome is of 600 * 800 size.
How can I produce a full screen popup?
Upvotes: 0
Views: 2911
Reputation: 603
Use screen.availWidth and screen.availHeight to calculate a suitable size for the height and width parameters in window.open()
Although this is likely to be close, it will not be maximised, nor accurate for everyone, especially if all the toolbars are shown. visit How to show fullscreen popup window in javascript?
Upvotes: 2