Skip to content

Instantly share code, notes, and snippets.

@zakuni
Created February 7, 2011 16:15
<div style="width:100px; height:100px; overflow:auto; border-style:solid">
aaa<br><br><br><br><br><br><br><br><br><br>
</div>
<div id="hidari" style="width:100px; height:100px; overflow:hidden; float:left; border-style:solid">
aaa<br><br><br><br><br><br><br><br><br><br>
</div>
<div id="migi" style="width:100px; height:100px; overflow:auto; float:left; border-style:solid">
bbb<br><br><br><br><br><br><br><br><br><br>
</div>
<div style="clear:both"></div>
$(function(){
var migi = $("#migi");
var hidari = $("#hidari");
migi.scroll(function(){
hidari.scrollTop(migi.scrollTop())
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment