The Mission | Missionary Letter | Dusty's Neighbourhood | Episode 18
The Mission, Missionary Letter
Kids' Bible Lesson on Sharing the Gospel | Jesus Sends Out The Disciples (Luke 9, Luke 10, Matthew 18:16-20) | Dusty’s Neighbourhood
// Record when the form was loaded
const formStartTime = Date.now();
form.addEventListener("submit", function(e) {
const timeTaken = (Date.now() - formStartTime) / 1000;
// Block submissions faster than 5 seconds
if (timeTaken < 5) {
e.preventDefault();
alert("Please take a moment to complete the form before submitting.");
return false;
}
});
});
});