rear view of the Ford Everest 2019
left side view of the Ford Everest 2019
engine bay of Ford Everest 2019
front right view of Ford Everest 2019
power window lock and mirror panel of Ford Everest 2019
interior front of Ford Everest 2019
reverse camera of Ford Everest 2019
rear view of the Ford Everest 2019
left side view of the Ford Everest 2019
engine bay of Ford Everest 2019
front right view of Ford Everest 2019
power window lock and mirror panel of Ford Everest 2019
interior front of Ford Everest 2019
reverse camera of Ford Everest 2019
rear view of the Ford Everest 2019
left side view of the Ford Everest 2019
engine bay of Ford Everest 2019
front right view of Ford Everest 2019
power window lock and mirror panel of Ford Everest 2019
interior front of Ford Everest 2019
reverse camera of Ford Everest 2019

2019 Ford Everest Titanium 4x2 (with Moonroof)

2019 Ford Everest Titanium 4x2 (with Moonroof)

2019 Ford Everest Titanium 4x2 (with Moonroof)

53,000

53,000

Diesel | Cash (Negotiable) | Financing Available

Diesel | Cash (Negotiable) | Financing Available

920,000

920,000

Description

Sample Financing Computation

• Color: Arctic White

• Engine Size: 2.2L

• Transmission: Automatic

• Fuel: Diesel

• Mileage: 53,000 kms

• Keyless Entry, Spare Key Available

• Panoramic Moonroof

• Reverse Camera

• Front and Rear Parking Sensors

• Bluetooth Touch Screen Car Stereo with Apple Carplay and Android Auto

• Electric Adjustable Front Seats

• Power Fold Seats (Rear)

• Power Tailgate

• 7 Seater (Leather Seats)

Description

Sample Financing Computation

• Color: Arctic White

• Engine Size: 2.2L

• Transmission: Automatic

• Fuel: Diesel

• Mileage: 53,000 kms

• Keyless Entry, Spare Key Available

• Panoramic Moonroof

• Reverse Camera

• Front and Rear Parking Sensors

• Bluetooth Touch Screen Car Stereo with Apple Carplay and Android Auto

• Electric Adjustable Front Seats

• Power Fold Seats (Rear)

• Power Tailgate

• 7 Seater (Leather Seats)

Description

Sample Computation

• Color: Arctic White

• Engine Size: 2.2L

• Transmission: Automatic

• Fuel: Diesel

• Mileage: 53,000 kms

• Keyless Entry, Spare Key Available

• Panoramic Moonroof

• Reverse Camera

• Front and Rear Parking Sensors

• Bluetooth Touch Screen Car Stereo with Apple Carplay and Android Auto

• Electric Adjustable Front Seats

• Power Fold Seats (Rear)

• Power Tailgate

• 7 Seater (Leather Seats)

Other Vehicles You Might Be Interested In

Other Vehicles You Might Be Interested In

Toyota Fortuner 2018 Loaded For Sale

₱1,150,000

2017 Toyota Fortuner V (LOADED)

Diesel | Cash (Negotiable) | Financing Available

47,000

Automatic

Toyota Fortuner 2018 Loaded For Sale

₱1,150,000

2017 Toyota Fortuner V (LOADED)

Diesel | Cash (Negotiable) | Financing Available

47,000

Automatic

₱1,050,000

2022 Mitsubishi Montero GLX

Diesel | Cash (Negotiable) | Financing Available

13,000

Manual

₱1,050,000

2022 Mitsubishi Montero GLX

Diesel | Cash (Negotiable) | Financing Available

13,000

Manual

₱895,000

2019 Nissan Terra EL

Diesel | Cash (Negotiable) | Financing Available

57,000KMs

Automatic

₱895,000

2019 Nissan Terra EL

Diesel | Cash (Negotiable) | Financing Available

57,000KMs

Automatic

Toyota Fortuner 2018 Loaded For Sale

₱1,150,000

2017 Toyota Fortuner V (LOADED)

Diesel | Cash (Negotiable) | Financing Available

47,000

Automatic

₱1,050,000

2022 Mitsubishi Montero GLX

Diesel | Cash (Negotiable) | Financing Available

13,000

Manual

₱895,000

2019 Nissan Terra EL

Diesel | Cash (Negotiable) | Financing Available

57,000KMs

Automatic

₱790,000

2019 Honda Civic

Gas | Cash (Negotiable) | Financing Available

35,000

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