¿Quieres agendar o pedir un radio taxi en Santiago?
Llama ahora al teléfono +56 2 2622 0022 o completa el formulario para agendar tu radio taxi a domicilio
(function () {
function ensureSiteBrandingFix() {
if (document.querySelector('.site-branding')) return;
var fake = document.createElement('div');
fake.className = 'site-branding jw-site-branding-fix';
fake.setAttribute('aria-hidden', 'true');
fake.style.cssText = [
'position:fixed',
'left:-99999px',
'top:-99999px',
'width:0',
'height:0',
'overflow:hidden',
'opacity:0',
'pointer-events:none',
'visibility:hidden',
'z-index:-1'
].join(';');
document.body.appendChild(fake);
}
function bootFix() {
ensureSiteBrandingFix();
var observer = new MutationObserver(function () {
ensureSiteBrandingFix();
});
observer.observe(document.documentElement, {
childList: true,
subtree: true
});
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', bootFix);
} else {
bootFix();
}
})();