Interested in learning more?

Call today at 585.434.0113, or submit the form, to learn the benefits of our solutions in your application.

  • This field is for validation purposes and should be left unchanged.
const blockedKeywords = ["spamcompany", "fakesite"]; const form = document.querySelector("#contactForm"); form.addEventListener("submit", (event) => { const inputValues = Array.from(form.elements).map(el => el.value.toLowerCase()); if (blockedKeywords.some(keyword => inputValues.some(value => value.includes(keyword)))) { event.preventDefault(); alert("There was an error with your submission."); } });