Skip to content

Instantly share code, notes, and snippets.

@pablolobos
Created January 21, 2014 12:06
Show Gist options
  • Save pablolobos/8538827 to your computer and use it in GitHub Desktop.
Save pablolobos/8538827 to your computer and use it in GitHub Desktop.
javascript_css-pseudo.js
// Get the color value of .element:before
var color = window.getComputedStyle(
document.querySelector('.element'), ':before'
).getPropertyValue('color');
// Get the content value of .element:before
var content = window.getComputedStyle(
document.querySelector('.element'), ':before'
).getPropertyValue('content');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment