Hello @gunnyret,
I see the following errors in the console:
Refused to execute script from ‘https://summitcountystanddown.org/forms/donation-report/js/script.js’ because its MIME type (‘text/html’) is not executable, and strict MIME type checking is enabled.
donation-report/:1 Access to XMLHttpRequest at ‘https://clients6.google.com/rpc?key=AIzaSyCKSbrvQasunBoV16zDH9R33D88CeLr9gQ’ from origin ‘https://summitcountystanddown.org’ has been blocked by CORS policy: Response to preflight request doesn’t pass access control check: No ‘Access-Control-Allow-Origin’ header is present on the requested…
It means that there is a problem with MIME type checking, something is blocking script.js and CORS policy is not set properly to allow fetching resources from your domain.
You need to check about these issue with your hosting support and/or within Cloudflare settings, you can try to resolve CORS problem by adding this on top of the .htaccess file:
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin https://summitcountystanddown.org
</IfModule>
But as I suggested, better check this out with your hosting company,
Kind regards.