Skip to content

Instantly share code, notes, and snippets.

@Vitzkrieg
Created October 30, 2023 17:51
Show Gist options
  • Save Vitzkrieg/b008f34ef86d946848869c3a316b429b to your computer and use it in GitHub Desktop.
Save Vitzkrieg/b008f34ef86d946848869c3a316b429b to your computer and use it in GitHub Desktop.
Get Element's Before Content
const el = document.getElementById('id');
const beforeText = getComputedStyle(el, ':before').getPropertyValue('content');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment