Created
November 27, 2020 22:58
-
-
Save naamancampbell/1d6f6d818abd9b4597beb34277439858 to your computer and use it in GitHub Desktop.
Removes language-tagged AWS re:invent sessions from the https://virtual.awsevents.com/agenda Session Catalog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let excludedLanguages = ['Chinese', 'French', 'Italian', 'Japanese', 'Korean', 'Portuguese', 'Spanish'] | |
for (const tagsDiv of document.querySelectorAll(".event-list-item-tags")) { | |
for (const tagDiv of tagsDiv.querySelectorAll(".tag")) { | |
if (excludedLanguages.includes(tagDiv.textContent)) { | |
let parentDiv = tagsDiv.closest(".event-list-item") | |
parentDiv.parentNode.removeChild(parentDiv) | |
break | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment