CommunosTestPage/script.js

From The First Descendant Wiki
Revision as of 11:24, 22 June 2024 by Communos (talk | contribs)
function addClassToDiv(string) {
	const rarityClasses = document.querySelectorAll(".Rarity")
	for (const div of rarityClasses) {
		if (div.textContent.includes(string)) {
			div.classList.add("Rare")
		}
	}
}

addCkassToDiv("Rare");