Skip to content

Instantly share code, notes, and snippets.

@mantismamita
Created July 6, 2020 14:15
Show Gist options
  • Save mantismamita/ac1cf44faeabfd02262de85c190403db to your computer and use it in GitHub Desktop.
Save mantismamita/ac1cf44faeabfd02262de85c190403db to your computer and use it in GitHub Desktop.
const getStyle = (classOrId, property) => {
var firstChar = classOrId.charAt(0);
var remaining= classOrId.substring(1);
var elem = (firstChar =='#') ? document.getElementById(remaining) : document.getElementsByClassName(remaining)[0];
if(elem) {
return window.getComputedStyle(elem).getPropertyValue(property);
}
return;
}
//usage
let containerWidth= getStyle('.container', 'width');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment