Posts by Eduardo Calazans Júnior • 11 points
2 posts
-
1
votes1
answer373
viewsA: Move object with another element position on the screen with clientX
Fixed using jquery $('#div_grid').on('scroll', function () { $('#div_cabecalho').scrollLeft($('#div_grid').scrollLeft()); });
-
0
votes1
answer373
viewsQ: Move object with another element position on the screen with clientX
I have the following code which is functional in IE7 function ScrollControl() { var obj = window.event.srcElement; var evento = obj.componentFromPoint(event.clientX,event.clientY);…