PDA

View Full Version : Fullscreen popup html with scrollbar



felipegm
September 6th, 2007, 11:49 AM
I cliente of mine insists on having a html site on a fullscreen window, even tough I told him it was not a good idea... anyway...

is it possible to have a fullscreen popup with scrollbar?

I took a look at this tutotial (http://www.accessify.com/features/tutorials/the-perfect-popup/)

but it does not specify if this is possible.

thanks for any help

thats all folks
September 6th, 2007, 11:59 AM
Not sure if this helps

http://www.webdevelopersnotes.com/tutorials/javascript/creating_opening_new_window_pop_ups_javascript.php 3

<A HREF="javascript:void(0)"
onclick="window.open('welcome2.html',
'welcome','fullscreen=yes,scrollbars=yes')">
Open a full screen window</A>

felipegm
September 6th, 2007, 01:58 PM
Thanks a lot... it helped... :)