Skip to main content

Rally Trailer Videos

At Rally Trailers, we manufacture reel trailers crafted specifically for the worksite. Our trailers are built to last with premium, thick steel and advanced technology using fiber optic reels. We field-test our trailers because we want to ensure they’re the best ones for the job.

3 PLACE TURRET TRAILER

COMPRESSOR TURRET TRAILER

RAPID FIBER DEPLOYMENT TRAILER

document.addEventListener('DOMContentLoaded', function () { const zipForm = document.getElementById('dealerZipForm'); if (zipForm) { zipForm.addEventListener('submit', function (e) { e.preventDefault(); const zip = parseInt(document.getElementById('zipInput').value, 10); const trailerName = encodeURIComponent(document.title); const dealerPages = [ { name: 'Rally Trailers MFG', url: 'https://rallytrailermfg.com/rally-trailer-manufacturing-quote-page/', ranges: [[84000, 86999], [89000, 89999], [90000, 96199]] }, { name: 'Elevated Sales', url: 'https://rallytrailermfg.com/elevated-sales-request-a-quote-page/', ranges: [[83200, 83999]] }, { name: 'Tel Quip', url: 'https://rallytrailermfg.com/tel-quip-request-a-quote-page/', ranges: [[75000, 79999], [66000, 67999], [73000, 74999], [71600, 72999]] }, { name: 'ABS Rent', url: 'https://rallytrailermfg.com/abs-rent-request-a-quote-page/', ranges: [[80000, 83199], [59000, 59999], [68000, 69999], [57000, 57999], [58000, 58899]] }, { name: 'Northwest Hydrovac', url: 'https://rallytrailermfg.com/northwest-hydrovac-request-a-quote-page/', ranges: [[97000, 97999], [98000, 99499], [99500, 99999], [96700, 96999]] }, { name: 'Plummettaz American Corp', url: 'https://rallytrailermfg.com/plummettaz-request-a-quote-page/', ranges: [[37000, 39999], [0, 36999]] } ]; let matchedURL = ''; for (let dealer of dealerPages) { for (let range of dealer.ranges) { if (zip >= range[0] && zip <= range[1]) { matchedURL = dealer.url; break; } } if (matchedURL) break; } if (matchedURL !== '') { const redirectURL = `${matchedURL}?trailer=${trailerName}`; console.log('Redirecting to:', redirectURL); window.location.href = redirectURL; } else { alert('ZIP code not recognized. Please contact us directly.'); } }); } });