Skip to content

Instantly share code, notes, and snippets.

@viller239
Created August 29, 2020 12:30
Show Gist options
  • Save viller239/0e84badc5f2ff4fa8014191d1880dbda to your computer and use it in GitHub Desktop.
Save viller239/0e84badc5f2ff4fa8014191d1880dbda to your computer and use it in GitHub Desktop.
function path(el) { return (el.parentElement ? path(el.parentElement) + ' > ': '' ) + el.tagName + (el.id ? '#' + el.id : '') + Array.from(el.classList).map(x => '.' + x).join('')};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment