Skip to content

Instantly share code, notes, and snippets.

@BroFox86
Last active January 28, 2025 14:24
Show Gist options
  • Select an option

  • Save BroFox86/edf9acb3a6b38fe708d84b7d48e131d9 to your computer and use it in GitHub Desktop.

Select an option

Save BroFox86/edf9acb3a6b38fe708d84b7d48e131d9 to your computer and use it in GitHub Desktop.
[Detect scrollbars] #jsTrick
const element = document.querySelector(".element");
const hasHorizontalScrollbar = element.scrollWidth > element.clientWidth;
const hasVerticalScrollbar = element.scrollHeight > element.clientHeight;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment