Skip to content

Instantly share code, notes, and snippets.

@tayyebi
Created October 6, 2020 14:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tayyebi/67ce6e831cc33cb48abe4d060e1f758b to your computer and use it in GitHub Desktop.
Save tayyebi/67ce6e831cc33cb48abe4d060e1f758b to your computer and use it in GitHub Desktop.
To filter hashtag #هزلیات from Mastodon.
var childDivs = document.getElementsByClassName('status');
for( i=0; i< childDivs.length; i++ )
{
var childDiv = childDivs[i];
if (childDiv.textContent.includes("#هزلیات")) {
childDiv.style.display='none';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment