Skip to content

Instantly share code, notes, and snippets.

@AirStair
Last active October 16, 2019 06:55
Show Gist options
  • Save AirStair/194f47b0c71acd72ce50007f66362a39 to your computer and use it in GitHub Desktop.
Save AirStair/194f47b0c71acd72ce50007f66362a39 to your computer and use it in GitHub Desktop.
function queryText(selector, text) {
try {
var elements = document.querySelectorAll(selector);
return Array.prototype.filter.call(elements, function (element) {
return RegExp(text).test(element.textContent);
});
} catch (e) {
console.log(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment