Skip to content

Instantly share code, notes, and snippets.

@justinobney
Created August 10, 2016 13:44
Show Gist options
  • Save justinobney/8dda000547cd10b3391c72ba5e957454 to your computer and use it in GitHub Desktop.
Save justinobney/8dda000547cd10b3391c72ba5e957454 to your computer and use it in GitHub Desktop.
var criteria = 'remote react';
var comments = document.querySelectorAll('.comment-tree .athing');
[].slice.call(comments).forEach((e) => {
var terms = criteria.split(' ');
var matches = terms.every(t=>(e.innerText.match(new RegExp(t, 'gi')) || []).length)
if(!matches){
e.style.display = 'none'
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment