Select your model
Please select your model to repair
// === WIDGET DE quote_interaction ===
window.addEventListener('message', function(e) {
if (typeof e.data !== 'string') return;
window.dataLayer = window.dataLayer || [];
if (e.data.indexOf('WIDGET_CONTENT_CHANGED') === 0) {
var widgetEl = document.getElementById('model');
if (widgetEl) {
widgetEl.style.height = e.data.split('|')[1];
widgetEl.scrollIntoView({ behavior: 'smooth' });
}
window.dataLayer.push({
'event': 'quote_interaction',
'categoria': 'conversion',
'accion': 'interaccion_widget'
});
}
});
// === CALL BUTTON ===
document.addEventListener("DOMContentLoaded", function() {
var botones = document.querySelectorAll('a[href*="tel"]');
if (botones.length === 0) return;
botones.forEach(function(el) {
el.addEventListener('click', function() {
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
'event': 'Click Call'
});
});
});
});