Watching your child grow is exciting, and it’s natural to wonder if they’re developing as expected. Developmental screening is a simple way to check how your child is learning, moving, talking, and interacting as they grow. A screening should be completed by a child’s parent, guardian or caregiver.
Complete your child’s free developmental screening today and see if he or she is on track!
.step p { font-weight: bold; margin: 2em 0 0.2em; } .step label { font-weight: 400; } .step button { margin-top: 1em; } .step .message p { background-color: #fbd8cd; padding: 2em; border-radius: 1em; font-weight: normal; } .hidden { display: none; } .step .success { background-color: #c4df9c; padding: 2em; border-radius: 1em; margin-top: 1em; } .step .success p { margin: 0 0 1.5em; font-weight: normal; } .step .success .is-style-outline a { background-color: rgba(255,255,255,0.5) !important; }1. Does the child live in Orange County, CA?
${errorMessage}
`; } } // Function for Step 2: Validate the zip code. function handleStep2(e) { // Prevent the form from submitting normally. if (e) e.preventDefault(); const zipInput = document.getElementById(“zipInput”).value.trim(); const step2Message = document.getElementById(“step2-message”); const step3 = document.getElementById(“step3”); const final = document.getElementById(“final”); // Clear any previous messages and hide further steps. step2Message.innerHTML = “”; step3.classList.add(“hidden”); final.classList.add(“hidden”); if (allowedZipCodes.includes(zipInput)) { // If the zip code is valid, show step 3. step3.classList.remove(“hidden”); } else { // Otherwise, display the error message. step2Message.innerHTML = `${errorMessage}
`; } } // Function for Step 3: Check the age requirement. function handleStep3() { const q3 = document.querySelector(‘input[name=”question3″]:checked’); const step3Message = document.getElementById(“step3-message”); const final = document.getElementById(“final”); // Clear previous messages and hide final result. step3Message.innerHTML = “”; final.classList.add(“hidden”); if (q3.value === “yes”) { // If yes, show the hyperlink. final.classList.remove(“hidden”); } else { // If no, display the error message. step3Message.innerHTML = `${errorMessage}
`; } }