0

I have two div's with horizontal scroll bars. If I scroll one the other one should also scroll simultaneously.

mpapec
  • 50,217
  • 8
  • 67
  • 127
Zameer Ahmed
  • 131
  • 1
  • 2
  • 7
  • Great! So what have you done so far? This is a coding advice site. Where is your code. – Giacomo1968 Nov 23 '13 at 04:54
  • possible duplicate of [Scroll 2 scrollbars with jquery the same time](http://stackoverflow.com/questions/5389228/scroll-2-scrollbars-with-jquery-the-same-time) – Ed Chapel Nov 25 '13 at 11:48

1 Answers1

3

Please see this question:

$('.linked').scroll(function(){
    $('.linked').scrollTop($(this).scrollTop());    
})

This is jsfiddle sample.

Community
  • 1
  • 1