Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

synchronize two scrolling bars in multiple selection box

Tags:

javascript

hi i am newbie to javascript....
i want to synchronize scrolling of two select boxes, so that when i scroll down the first select box the scroll bar of another select box also scrolls....

like image 310
yb007 Avatar asked Mar 25 '10 17:03

yb007


1 Answers

$(document).ready(function(){
  $('#one').scroll(function(){
    var length = $(this).scrollTop();
    $('#two').scrollTop(length);
  });
});

JS Bin Demo

like image 186
Ben Shelock Avatar answered Sep 19 '22 23:09

Ben Shelock