[SOLD] 2025 Mitsubishi Montero Sport GLX

[SOLD] 2025 Mitsubishi Montero Sport GLX

[SOLD] 2025 Mitsubishi Montero Sport GLX

16,000KMs

16,000KMs

Diesel | Cash (Negotiable) | Financing Available

Diesel | Cash (Negotiable) | Financing Available

₱1,190,000

₱1,190,000

Description

Sample Financing Computation

2025 Mitsubishi Montero Sport GLX

FULL DESCRIPTION:

▪️ Color: White Diamond

▪️ Engine size: 2.4L

▪️ Transmission: Manual

▪️ Fuel: Diesel

▪️ Mileage: 16,000 kms

▪️ Keyless entry, spare key available

▪️ Reverse camera

▪️ Bluetooth touch screen car stereo

▪️ 7 seater

▪️ Rear wing spoiler

▪️ Front dash cam equipped

▪️ Complete tools

Description

Sample Financing Computation

2025 Mitsubishi Montero Sport GLX

FULL DESCRIPTION:

▪️ Color: White Diamond

▪️ Engine size: 2.4L

▪️ Transmission: Manual

▪️ Fuel: Diesel

▪️ Mileage: 16,000 kms

▪️ Keyless entry, spare key available

▪️ Reverse camera

▪️ Bluetooth touch screen car stereo

▪️ 7 seater

▪️ Rear wing spoiler

▪️ Front dash cam equipped

▪️ Complete tools

Description

Sample Computation

2025 Mitsubishi Montero Sport GLX

FULL DESCRIPTION:

▪️ Color: White Diamond

▪️ Engine size: 2.4L

▪️ Transmission: Manual

▪️ Fuel: Diesel

▪️ Mileage: 16,000 kms

▪️ Keyless entry, spare key available

▪️ Reverse camera

▪️ Bluetooth touch screen car stereo

▪️ 7 seater

▪️ Rear wing spoiler

▪️ Front dash cam equipped

▪️ Complete tools

Other Vehicles You Might Be Interested In

Other Vehicles You Might Be Interested In

₱730,000

2022 Geely Okavango Urban Plus (Mild Hybrid)

Gas | Cash (Negotiable) | Financing Available

47,000KMs

Automatic

₱730,000

2022 Geely Okavango Urban Plus (Mild Hybrid)

Gas | Cash (Negotiable) | Financing Available

47,000KMs

Automatic

₱1,050,000

2023 Subaru XV 2.0i-S Eyesight

Gas | Cash (Negotiable) | Financing Available

22,000KMs

Automatic

₱1,050,000

2023 Subaru XV 2.0i-S Eyesight

Gas | Cash (Negotiable) | Financing Available

22,000KMs

Automatic

₱1,780,000

2024 Ford Everest Turbo Titanium Plus (4x2)

Diesel | Cash (Negotiable) | Financing Available

26,000KMs

Automatic

₱1,780,000

2024 Ford Everest Turbo Titanium Plus (4x2)

Diesel | Cash (Negotiable) | Financing Available

26,000KMs

Automatic

₱730,000

2022 Geely Okavango Urban Plus (Mild Hybrid)

Gas | Cash (Negotiable) | Financing Available

47,000KMs

Automatic

₱1,050,000

2023 Subaru XV 2.0i-S Eyesight

Gas | Cash (Negotiable) | Financing Available

22,000KMs

Automatic

₱1,780,000

2024 Ford Everest Turbo Titanium Plus (4x2)

Diesel | Cash (Negotiable) | Financing Available

26,000KMs

Automatic

₱1,050,000

2024 Toyota Yaris Cross V

Gasoline | Cash (Negotiable) | Financing Available

27,000KMs

Automatic

Contact Us

Contact Us

Contact Us

How to get in touch with us

How to get in touch with us

Have a question? We're always here to help.

Have a question? We're always here to help.

Schedule Your Viewing

Choose your date and book online now.

Visit our Facebook Page

Call us

Speak to us over the phone.

Viber: 0967 075 6137

Visit us

Valley 1, L5 B27 San Jose Street San Antonio, Sucat, Parañaque, 1700 Metro Manila

Monday to Saturday: 9:00 a.m. - 6:00 p.m.

Sunday: 2:00 p.m. - 6:00 p.m.

/** * This script should be placed on your car product pages. * It uses a robust event delegation method to detect a click on the "Financing" tab, * which is more reliable for dynamic sites like Framer. * It also includes console logs for debugging. */ const initializeCalculatorIntegration = () => { console.log("Hyperdrive Script: Initializing..."); // Use event delegation on the body. This is more robust. document.body.addEventListener('click', (event) => { // Check if the clicked element or its parent is the "Financing" tab. const target = event.target.closest('a'); if (target && target.textContent.trim() === 'Financing') { console.log("Hyperdrive Script: 'Financing' tab clicked."); // Now that the tab is clicked, poll for the iframe and data. const sendVehicleData = () => { const calculatorIframe = document.getElementById('financing-calculator'); const titleElement = document.querySelector('h1'); const priceElement = document.querySelector('[data-testid="price"]'); console.log("Hyperdrive Script: Polling... Iframe found:", !!calculatorIframe, "Title found:", !!titleElement, "Price found:", !!priceElement); if (calculatorIframe && titleElement && priceElement && calculatorIframe.contentWindow) { console.log("Hyperdrive Script: All elements found. Sending data..."); clearInterval(dataCheckInterval); // Stop polling const yearMatch = titleElement.textContent.match(/^\d{4}/); const year = yearMatch ? yearMatch[0] : null; const price = priceElement.textContent.replace(/[^0-9]/g, ''); if (price && year) { const vehicleData = { type: 'autoFinanceData', price: parseFloat(price), year: parseInt(year) }; setTimeout(() => { calculatorIframe.contentWindow.postMessage(vehicleData, '*'); console.log("Hyperdrive Script: Message sent to calculator:", vehicleData); }, 250); } } }; const dataCheckInterval = setInterval(sendVehicleData, 200); setTimeout(() => { clearInterval(dataCheckInterval); }, 7000); } }); }; window.addEventListener('load', initializeCalculatorIntegration);