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"));
source share