搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Is there a fix for the scrolling problem on a page opened from within a page

  • 9 个回答
  • 5 人有此问题
  • 100 次查看
  • 最后回复者为 tonylc

more options

I cannot scroll when i open a new window from within an open window...for example: I log into a forum and use a keyword tool, It opens a Google serp that normally I can scroll...but FF will not let it scroll... duplicating with Chrome open alongside it scrolls perfectly.. I did notice that FF does not show the scroll bar on the rt side when this happens, (Chrome does).

I have tried running in safe mode, going through some config suggestions..though they were probably outdated...this happens in  other similar situations...

when it does happen..FF does not display the scroll bar...yet Chrome will

I use macbook os 10.6.8

This is not intermittent...

I cannot scroll when i open a new window from within an open window...for example: I log into a forum and use a keyword tool, It opens a Google serp that normally I can scroll...but FF will not let it scroll... duplicating with Chrome open alongside it scrolls perfectly.. I did notice that FF does not show the scroll bar on the rt side when this happens, (Chrome does). I have tried running in safe mode, going through some config suggestions..though they were probably outdated...this happens in other similar situations... when it does happen..FF does not display the scroll bar...yet Chrome will I use macbook os 10.6.8 This is not intermittent...

被采纳的解决方案

Did you previously use that forum successfully in an earlier version of Firefox, or is this your first time using Firefox with that forum? (Trying to figure out if this is a new, upgrade-related issue.)

I do think I've seen a similar "missing vertical scrollbar" issue in another thread, but I can't find it.

Some pop-up windows turn off scroll bars. You can block them from doing that by changing a setting in Firefox's about:config preferences editor.

(1) In a new tab, type or paste about:config in the address bar and press Enter. Click the button promising to be careful.

(2) In the filter box, type or paste scrollbar and pause while the list is filtered

(3) Double-click dom.disable_window_open_feature.scrollbars to flip it to true.

If you pop up the window again, does it make any difference? If not, there might be something about the code of the page that is not working right on Firefox. Hard to know without seeing it first-hand.

定位到答案原位置 👍 3

所有回复 (9)

more options

选择的解决方案

Did you previously use that forum successfully in an earlier version of Firefox, or is this your first time using Firefox with that forum? (Trying to figure out if this is a new, upgrade-related issue.)

I do think I've seen a similar "missing vertical scrollbar" issue in another thread, but I can't find it.

Some pop-up windows turn off scroll bars. You can block them from doing that by changing a setting in Firefox's about:config preferences editor.

(1) In a new tab, type or paste about:config in the address bar and press Enter. Click the button promising to be careful.

(2) In the filter box, type or paste scrollbar and pause while the list is filtered

(3) Double-click dom.disable_window_open_feature.scrollbars to flip it to true.

If you pop up the window again, does it make any difference? If not, there might be something about the code of the page that is not working right on Firefox. Hard to know without seeing it first-hand.

more options

Try to remove the Firefox plist file (org.mozilla.firefox.plist).

Go to "~/Library/Preferences" and remove the plist file for Firefox (org.mozilla.firefox.plist)

more options

Woooweee that did it...I tried Cor-els solution first with no result..

also if it can help you guys...this is my very first time installing FF..so I had no earlier versions to compare..

Thank you Jscher2000 !

由Tinydot于修改

more options

I have this same issue, and changing the preference (dom.disable_window_open_feature.scrollbars) and flipping it to true did help. However, I'm the developer of the popup, how can I make firefox scrollable for users of my site?

more options

I have this same issue, and changing the preference (dom.disable_window_open_feature.scrollbars) and flipping it to true did help. However, I'm the developer of the popup, how can I make firefox scrollable for users of my site?

more options
more options

I'm not doing anything fancy here

window.open(url, "_blank", "status=0,resizable=1,toolbar=0,height=" + height

         + ",width="+ width + ",top=" + top + ",left=" + left);
more options

Try adding scrollbars=yes

more options

Hmm i swear I had try this earlier and it wasn't working, but its working now. Thanks!