Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Sternbach-Software/8334061216b07c78d8560acfb0c8d56f to your computer and use it in GitHub Desktop.
Save Sternbach-Software/8334061216b07c78d8560acfb0c8d56f to your computer and use it in GitHub Desktop.
function unescapedInnerHTMLFromSelector(selector) {
return Array
.from(
document.querySelectorAll(selector)
)
.map(
function (node) {
with (document.createRange().createContextualFragment(node.outerHTML)) {
return textContent;
}
}
);
}
console.log(unescapedInnerHTMLFromSelector('div.mx-sm a'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment