CONTACT

From the very moment we started this company, our motto has been to "strive for excellence," a commitment we hold dear. If you ever find yourself with questions or concerns regarding our products and services, we wholeheartedly encourage you to reach out.

Just fill in the contact form below, and our team members are right here to assist you with any inquiries. When you do fill out the form, please don't hold back and include as much detail as you can. This helps us serve you swiftly and effectively. We promise to get back to you within 24 business hours because your satisfaction means the world to us.

You can also reach us at: info@acetacgear.com

var $form = $('form#contact_form'), url = 'https://script.google.com/macros/s/AKfycbz7eb9owcK1Z0gNp1jma5hXQI7ZBP1XfMvwwIU6N79kr4Jl_kvS1xaCzUmxkm9CfkKK/exec' $('#contact_form').on('submit', function(e) { // updated this so it only submit data when form is submitted successfully. Previously we were triggering this even when user click on submit button. e.preventDefault(); // delete this is you want to send data to admin email address. var jqxhr = $.ajax({ url: url, method: "GET", dataType: "json", data: $form.serializeObject() }).success( // do something ); })