Lag in scrolling behavior on IE 10 and IE Edge modes

情到浓时终转凉″ 提交于 2019-12-24 15:40:35

问题


I'm trying to synchronize scrolling between two containers. But I see a lag in the scrolling of the synchronized one. Here is the fiddle for it.

http://jsfiddle.net/niranjan_borawake/n9ryLdaw/2/

Sample Code snippet:

$('#box2').on('scroll', function () {
    $('#box1').scrollTop($(this).scrollTop());
});

Note: This works fine in chrome and IE 9 as well but lags on IE 10 and IE Edge.

Has any one found a workaround for this?

来源:https://stackoverflow.com/questions/30755614/lag-in-scrolling-behavior-on-ie-10-and-ie-edge-modes

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!