Parish Volunteer Induction
document.addEventListener("DOMContentLoaded", function() {
// Find the element containing the exact text "JUMP BACK IN!"
const elements = document.querySelectorAll("header, header *"); // search inside the header
elements.forEach(el => {
if (el.textContent.trim() === "START COURSE") {
el.textContent = "CONTINUE ON";
}
});
});