Skip to content

Instantly share code, notes, and snippets.

@ruisaraiva19
Created March 7, 2020 10:40
Show Gist options
  • Save ruisaraiva19/8136693e2d292aa4486b9c6b4a361889 to your computer and use it in GitHub Desktop.
Save ruisaraiva19/8136693e2d292aa4486b9c6b4a361889 to your computer and use it in GitHub Desktop.
Check browser support for position sticky
function checkStickySupport() {
const el = document.createElement('a');
el.style.cssText =
'position:sticky; position:-webkit-sticky; position:-ms-sticky;';
return el.style.position.indexOf('sticky') !== -1;
}
const isStickySupported = checkStickySupport();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment