2019 Toyota Fortuner G

2019 Toyota Fortuner G

2019 Toyota Fortuner G

47,000KMs

47,000KMs

Gas | Cash (Negotiable) | Financing Available

Gas | Cash (Negotiable) | Financing Available

₱995,000

₱995,000

Send us a message on Facebook to inquire about this unit

Description

Sample Financing Computation

2019 Toyota Fortuner G

FULL DESCRIPTION:

▪️ Color: Freedom White

▪️ Engine Size: 2.7L

▪️ Transmission: Automatic

▪️ Fuel: Gasoline

▪️ Mileage: 47,000 kms with complete casa records

▪️ Keyless Entry, 2x spare keys available

▪️ 7 Seater

▪️ Bluetooth Touch Screen Car Stereo

▪️ With reverse camera

▪️ Wrap black top (LTD look)

▪️ 2018 model, 2019 acquired

Description

Sample Computation

2019 Toyota Fortuner G

FULL DESCRIPTION:

▪️ Color: Freedom White

▪️ Engine Size: 2.7L

▪️ Transmission: Automatic

▪️ Fuel: Gasoline

▪️ Mileage: 47,000 kms with complete casa records

▪️ Keyless Entry, 2x spare keys available

▪️ 7 Seater

▪️ Bluetooth Touch Screen Car Stereo

▪️ With reverse camera

▪️ Wrap black top (LTD look)

▪️ 2018 model, 2019 acquired

Other Vehicles You Might Be Interested In

Other Vehicles You Might Be Interested In

₱1,395,000

2023 Ford Everest Turbo Trend (4x2)

Diesel | Cash (Negotiable) | Financing Available

30,000KMs

Automatic

₱1,195,000

2023 Toyota Innova Zenix (V variant)

Gas | Cash (Negotiable) | Financing Available

40,000KMs

Automatic

₱995,000

2022 Ford Ranger FX4 Max (4x4)

Diesel | Cash (Negotiable) | Financing Available

46,000KMs

Automatic

₱1,395,000

2023 Ford Everest Turbo Trend (4x2)

Diesel | Cash (Negotiable) | Financing Available

30,000KMs

Automatic

₱1,195,000

2023 Toyota Innova Zenix (V variant)

Gas | Cash (Negotiable) | Financing Available

40,000KMs

Automatic

₱995,000

2022 Ford Ranger FX4 Max (4x4)

Diesel | Cash (Negotiable) | Financing Available

46,000KMs

Automatic

₱995,000

2024 Ford Territory Titanium X

Gas | Cash (Negotiable) | Financing Available

10,000KMs

Automatic

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);