Skip to content

Instantly share code, notes, and snippets.

View reachtokish's full-sized avatar
💭
Focusing

Kishore reachtokish

💭
Focusing
View GitHub Profile
@reachtokish
reachtokish / script.js
Created August 20, 2020 05:09
Synchronous scrolling
let isSyncingLeftScroll = false;
let isSyncingRightScroll = false;
document.getElementById('input_table').addEventListener('scroll', e => {
if (!isSyncingLeftScroll) {
isSyncingRightScroll = true;
document.getElementById('output_table').scrollTop = e.target.scrollTop;
}
isSyncingLeftScroll = false;
}, false);