We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06cd579 commit a47d79bCopy full SHA for a47d79b
013-random choice picker/script.js
@@ -24,7 +24,7 @@ const highlightTag = (tag) => tag.classList.add("highlight");
24
const unHighlightTag = (tag) => tag.classList.remove("highlight");
25
26
const randomSelect = () => {
27
- const tags = document.querySelectorAll(".tag");
+ const tags = tagsElements.querySelectorAll(".tag");
28
const times = 30;
29
const interval = setInterval(() => {
30
const randomTag = pickRandomTag(tags);
0 commit comments