Your Journey with Truth

Your Journey with Truth
Your Journey with Truth

My books

1.Your Journey with Truth

function searchChapters(input) {
const filter = input.value.toLowerCase();
const cards = document.querySelectorAll(“#chapterList .chapter-card”);
cards.forEach(card => {
const text = card.textContent.toLowerCase();
card.style.display = text.includes(filter) ? “block” : “none”;
});
}

Scroll to Top