Skip to content

Instantly share code, notes, and snippets.

@yashsharma04
Created August 28, 2020 08:23
Show Gist options
  • Save yashsharma04/9f4293db79aa9cce6500725b31923bbd to your computer and use it in GitHub Desktop.
Save yashsharma04/9f4293db79aa9cce6500725b31923bbd to your computer and use it in GitHub Desktop.
handleScroll = () => {
const elm = document.getElementById("scroll-bar");
const scrollLeft = elm.scrollLeft;
const tableBody = document.querySelector(".rt-table");
tableBody.scrollLeft = scrollLeft;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment