const chapters = document.querySelectorAll(".chapter-list-item:not(.active)"); console.log("Found elements:") for (const chapter of chapters) { console.log(chapter.textContent, chapter.className) }