top of page

Make: AUDI | Model: R8 | Fuel: Petrol | Transmission: Automatic | Engine: 5.20L

AUDI R8

SKU: CAR001
£82,500.00Price
Quantity
    bottom of page
    console.log('Car loader starting...'); let cars=null; function load(){ console.log('Load function called'); const info={name:document.title.replace(' | We Have More Cars','').trim()}; console.log('Product info:',info); if(info.name.includes('MERCEDES')){ console.log('Mercedes detected, creating placeholder'); const container=document.querySelector('img'); if(container&&container.parentElement){ const div=document.createElement('div'); div.style.cssText='width:100%;height:200px;background:blue;color:white;display:flex;align-items:center;justify-content:center;border-radius:8px'; div.innerHTML='

    MERCEDES BENZ TEST

    '; container.parentElement.replaceChild(div,container); console.log('Placeholder created'); }}} setTimeout(load,3000); console.log('Car loader initialized');