Skip to content

Instantly share code, notes, and snippets.

@castus
Created April 3, 2013 15:03
Show Gist options
  • Save castus/5301987 to your computer and use it in GitHub Desktop.
Save castus/5301987 to your computer and use it in GitHub Desktop.
[JS] Retrieve the color property of the .element:before
var color = window.getComputedStyle(
document.querySelector('.element'), ':before'
).getPropertyValue('color');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment