top of page
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');