Click to See Complete Forum and Search --> : A sized window, that scrolls?


D.S.R.Clark
08-10-2003, 12:16 PM
When making a "child" window, it appears to always be fixed. Is there a way to make a sized pop-up window, but still scrolls?

Thank you in advace,,David:confused:

AdamGundry
08-10-2003, 01:04 PM
I assume you are using window.open(), in which case you can add 'scrollbars=yes' to the parameter string (the last variable passed to the method, which contains the width and height).

Adam

P.S. According to the WCAG (http://www.w3.org/TR/WCAG10/), you should not be using popups.

D.S.R.Clark
08-10-2003, 02:36 PM
Thanks ADAMGUNDRY:D

D.S.R.Clark
08-11-2003, 02:59 PM
I put the 'scrollbars' in the string, but now ignores the size parameters. It is full screne, and not 300 x 200, ect.


<a href="anywhere.htm" onclick="window.open(this.href, 'child','scrollbars=yes', 'height=440,width=630,Top=0,Left=0'); return false">


Any thoughts (besides "David has no clue what he is doing!"); that I already know.:(

nkaisare
08-11-2003, 03:20 PM
P.S. According to the WCAG, you should not be using popups

<a href="anywhere.htm" onclick="window.open(this.href, 'child','scrollbars=yes,height=440,width=630,Top=0,Left=0'); return false">