Select Parts Category - 2005 Ford Five Hundred

Categories

Browse Categories

Select Parts Category - 2005 Ford Five Hundred

Auto Parts Categories

Accessories Categories

No Accessory Parts Found
Search for Another Vehicle
Or try a Keyword Search in the search bar above
/* ========================================= OVERSIZED SHIPPING QUOTE WARNING Shows warning when shipping = $9,999.99 CAD ========================================= */ (function () { function checkOversizedShipping() { const shippingValue = document.querySelector( '.shipping-quote.display-quote .order-summary-value' ); if (!shippingValue) return; const shippingText = shippingValue.textContent .replace(/\s/g, '') .toLowerCase(); const isOversized = shippingText.includes('$9,999.99') || shippingText.includes('$9,999'); let warning = document.getElementById('oversized-shipping-warning'); if (isOversized) { if (!warning) { warning = document.createElement('div'); warning.id = 'oversized-shipping-warning'; warning.innerHTML = ` Oversized Item Shipping There are oversized items in your cart. Please contact us to provide an accurate shipping quote. `; const shippingRow = shippingValue.closest('.order-summary-row'); if (shippingRow) { shippingRow.insertAdjacentElement('afterend', warning); } } } else { if (warning) { warning.remove(); } } } /* Check immediately */ checkOversizedShipping(); /* Shipping quote can populate/change after page load */ const observer = new MutationObserver(function () { checkOversizedShipping(); }); observer.observe(document.body, { childList: true, subtree: true, characterData: true }); })();