Skip to content

Instantly share code, notes, and snippets.

@andyf-7
Created May 3, 2015 10:58
Show Gist options
  • Save andyf-7/e6479301a03321f59d6e to your computer and use it in GitHub Desktop.
Save andyf-7/e6479301a03321f59d6e to your computer and use it in GitHub Desktop.
J query Scroll bar detected and others div scrol
jQuery(
function($)
{
$('#thetable').bind('scroll', function()
{
var s = parseInt($(this).scrollTop()) ;
$('#right').scrollTop(s);
})
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment