G Greg Smith May 29, 2007 #1 Is there a way to force the users browser to full screen? Any help is greatly appreciated.
M Mark Rae May 29, 2007 #2 Is there a way to force the users browser to full screen? Click to expand... http://www.google.co.uk/search?sour...220GB220&q=JavaScript+maximize+browser+window
Is there a way to force the users browser to full screen? Click to expand... http://www.google.co.uk/search?sour...220GB220&q=JavaScript+maximize+browser+window
O orin May 29, 2007 #3 using javascript: function maximize() { window.moveTo(0, 0); window.resizeTo(screen.availWidth, screen.availHeight); } may this be helpful. i'm a newbie too, actually kind regards.
using javascript: function maximize() { window.moveTo(0, 0); window.resizeTo(screen.availWidth, screen.availHeight); } may this be helpful. i'm a newbie too, actually kind regards.