Home
Our Support
Services & Facilities
Team & Training
Contact
Join Our Team

Do you need support or more information 
about our services?

Our autism-friendly service includes resources and opportunities that enable individuals to maximise their strengths. The support we provide is individualised and person-centred. If you would like to know more about our services or would like to place someone please get in touch.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
// Important, give your form a unique ID and assign that value // to FORM_ID below // Wrap your checkboxes in a div and give that div a unique ID // and assign it to GROUP_ID below document.addEventListener("DOMContentLoaded", function() { // Define constants for form ID and checkbox group ID const FORM_ID = "Contactform"; const GROUP_ID = "chkGroup"; // Get the form element by its ID var form = document.getElementById(FORM_ID); // Attach the submit event listener to the form form.addEventListener("submit", function(e) { // Get all checkboxes within the div with ID chkGroup var checkboxes = document.querySelectorAll(`#${GROUP_ID} input[type='checkbox']`); var checked = 0; // Loop through checkboxes to count the checked ones checkboxes.forEach(function(checkbox) { if (checkbox.checked) { checked++; } }); // If no checkboxes are checked, show an alert and prevent form submission if (checked < 1) { alert("Please select at least one checkbox."); e.preventDefault(); // Prevent form from submitting } }); });