Guest User

Untitled

a guest
Jan 20th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <div id="one" style="width:100px; height:200px; overflow-x:scroll; overflow-y:hidden;">
  2. <table id="tab1">
  3. contains 3 columns and 50 rows
  4. </table>
  5. </div>
  6.  
  7. <div id="two" style="width:845px; height:200px; overflow-x:auto; overflow-y:auto;">
  8. <table id="tab2">
  9. contains 12 columns and 50 rows
  10. </table>
  11. </div>
  12.  
  13. $("#two").scroll(function(){
  14. $('#one').scrollTop($('#two').scrollTop());
  15. });
Add Comment
Please, Sign In to add comment