Click to See Complete Forum and Search --> : Opening a link in a new browser window


jonathanhou
01-07-2005, 10:57 AM
Does anyone know how to open a link in a new browser maximized?

I know that you could use target="_blank" to open a new window, but how do you set it up so that it will always be maximized for the user?

NogDog
01-07-2005, 11:35 AM
I believe you could accomplish this via JavaScript, something like...
window.open("http://www.mysite.com/page.html","New","fullscreen");
Of course, this will only work if the user has JS enabled and if the user's browser supports this method/attribute (and will likely be stopped by pop-up blockers).

jonathanhou
01-07-2005, 11:36 AM
Okay. Thanks for the help.