Ship8 is a partner of TA Services where I work.

We have worked with them on multiple projects where we needed
additional transportation or warehousing support in Savannah. Ship8
has a beautiful facility, that is located a short distance from the Port of
Savannah, which makes the drayage to and from the port simple, and
removes a lot of stress.

Their team provides such a high level of service, and their exceptional
attention to detail has prevented problems that would have occurred
later on in our projects if they weren’t watching everything so closely.

No project is too big or too small.

Request Fulfillment Quote

jQuery(document).ready(function ($) { $(document).on('submit', '#J_request_pricing_form', function (event) { event.preventDefault(); var values = $(this).serializeArray(); var params = { type: 1, email: '', first_Name: '', last_Name: '', phone: '', companyName: '', companyWebsite: '', platform: '', shipmentsPerMinth: '', message: '', service: '', }; var servicesArr = []; values.forEach(function (item) { if (item.name === 'firstName') params.first_Name = item.value; if (item.name === 'lastName') params.last_Name = item.value; if (item.name === 'phone') params.phone = item.value; if (item.name === 'email') params.email = item.value; if (item.name === 'companyName') params.companyName = item.value; if (item.name === 'companyWebsite') params.companyWebsite = item.value; if (item.name === 'ecommercePlatform') params.platform = item.value; if (item.name === 'shipmentsMonth') params.shipmentsPerMinth = item.value; if (item.name === 'other') params.message = item.value; if (item.name === 'services[]') servicesArr.push(item.value); }); params.service = servicesArr.join(','); $.ajax({ type: 'POST', url: `${window.Win_ApiUrl}api/app/business/insertUserInquiry`, contentType: 'application/json', dataType: 'json', data: JSON.stringify(params), success: function (result) { if (result) { layer.alert( 'Success.', { icon: 1, title: 'Tips', btn: ['Ok'], skin: 'layer__ship8', }, function () { $('#J_request_pricing_form')[0].reset(); layer.closeAll(); } ); } }, error: function (e) { if (e.responseText) { layer.alert(e.responseText, { icon: 2, title: 'Tips', btn: ['Ok'], skin: 'layer__ship8', }); } console.log(e.status); console.log(e.responseText); }, }); }); });