Iframe will not scroll in Firefox 17

After upgrading Firefox to 17, iframe scrolling stopped working in my web application. I read that something has changed with the mouse event in the latest Firefox ( https://wiki.mozilla.org/Gecko:Mouse_Wheel_Scrolling ), but I don’t know why this will prevent my iframe from scrolling. Maybe because I automatically create this iframe using JavaScript. Scrolling works in the latest version of Chrome and older versions of Firefox.

jQuery:

var iframe = $(document.createElement("iframe")).attr("src", $(this).attr("href")+"&without_js=1") .css({"border": "0", "width": "100%", "height": ($(window).height() - 100 - 100)+"px", "overflow":"scroll"}) .attr("id", "zaplanowanie_przegladu_frame").attr("name", "table_frame").hide().appendTo($("body")); 
0
source share
1 answer

I have the same problem. I place the scroll on the body iframe attribute. He worked until FF17. I will try to combine the smallest common significant error reproduction.

I found that someone reported a similar problem on the mozilla support site: http://support.mozilla.org/en-US/questions/942843

+2
source

All Articles