Get a Free Quote

Get Your Free Quote

Fill out the form below and we’ll get back to you within minutes with an exact price.

Select vehicle…
Sedan / Coupe
SUV / Crossover
Pickup Truck
Van / Minivan
Motorcycle
Luxury / Exotic
Classic / Vintage
Other

Select type…
Open Transport
Enclosed Transport
Not Sure

100%
Free Quote
$0
No Deposit
A+
BBB Rated

Or call us directly: (866) 468-3778

function submitQuote(e) {
e.preventDefault();
var btn = document.getElementById(‘submit-btn’);
var msg = document.getElementById(‘form-msg’);
var form = document.getElementById(‘quote-form’);
btn.disabled = true;
btn.textContent = ‘Sending…’;
msg.style.display = ‘none’;

var fd = new FormData(form);
var data = {
name: fd.get(‘name’),
phone: fd.get(‘phone’),
email: fd.get(’email’) || ”,
from_city: fd.get(‘from_city’),
to_city: fd.get(‘to_city’),
vehicle: fd.get(‘vehicle’),
transport: fd.get(‘transport’),
site: ‘interstatesmovers.com’,
page_url: window.location.href
};

fetch(‘http://173.242.51.135:8899/quote’, {
method: ‘POST’,
headers: {‘Content-Type’: ‘application/json’},
body: JSON.stringify(data)
})
.then(function(r) { return r.json(); })
.then(function(d) {
if (d.status === ‘ok’) {
msg.style.display = ‘block’;
msg.style.background = ‘#f0fdf4’;
msg.style.color = ‘#166534’;
msg.textContent = ‘Thank you! We will contact you shortly with your quote.’;
form.reset();
} else {
throw new Error(d.error || ‘Error’);
}
})
.catch(function() {
msg.style.display = ‘block’;
msg.style.background = ‘#fef2f2’;
msg.style.color = ‘#991b1b’;
msg.textContent = ‘Something went wrong. Please call us at (866) 468-3778.’;
})
.finally(function() {
btn.disabled = false;
btn.textContent = ‘Get My Free Quote’;
});

return false;
}