Is there a way to make a popup window maximised as soon as it is opened? If not that, at least make it screen-sized? This:
window.open(src, \'newWin\', \'ful
What about this:
var popup = window.open(URL); if (popup == null) alert('Please change your popup settings'); else { popup.moveTo(0, 0); popup.resizeTo(screen.width, screen.height); }