Created
August 28, 2020 08:23
-
-
Save yashsharma04/9f4293db79aa9cce6500725b31923bbd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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