Join our network of trusted partners and distribute high-quality filters for transport refrigeration units (TRUs). Please fill out the form below, and our team will contact you shortly.
Contact Us
Thank you for choosing TRU Filter.
Your satisfaction is always our #1 priority. Please shoot us a message here or directly at [email protected]
We will respond to you as soon as possible!
document.addEventListener('DOMContentLoaded', function () {
const form = document.querySelector('form');
const phoneInput = document.getElementById('phone');
if (form && phoneInput) {
form.addEventListener('submit', function (e) {
const phonePattern = /^\+?[0-9\s\-()]{7,20}$/;
if (!phonePattern.test(phoneInput.value.trim())) {
e.preventDefault();
alert("Please enter a valid phone number, including country code.");
phoneInput.focus();
}
});
}
});