Thursday, October 5, 2023
 Popular · Latest · Hot · Upcoming
151
rated 0 times [  154] [ 3]  / answers: 1 / hits: 72261  / 15 Years ago, wed, july 22, 2009, 12:00:00

How do I use 'window.open' to create a new window with scrollbars in firefox?



thanks!


More From » javascript

 Answers
6

This should do it:



window.open(http://example.com, name, scrollbars=1,width=100,height=100);


but note that Firefox will only show scrollbars when the content is larger than the window.



To force Firefox to always show a scrollbar (like Internet Explorer does) you need this in the stylesheet of the HTML that's being shown in the popup:



html {
overflow: -moz-scrollbars-vertical;
}

[#99080] Friday, July 17, 2009, 15 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
jabari

Total Points: 580
Total Questions: 85
Total Answers: 110

Location: Western Sahara
Member since Mon, May 3, 2021
2 Years ago
jabari questions
;