Tienda

Tienda de Asociación Güeba

Aquí puedes encontrar los productos clásicos y alguna novedad.


<!–

–>

// Mostrar modal al cargar la página
window.onload = function() {
document.getElementById(«miModal»).style.display = «block»;
}

// Cerrar al hacer clic en la «X»
document.getElementById(«cerrarModal»).onclick = function() {
document.getElementById(«miModal»).style.display = «none»;
}

// Cerrar si se hace clic fuera del contenido
window.onclick = function(event) {
if (event.target === document.getElementById(«miModal»)) {
document.getElementById(«miModal»).style.display = «none»;
}
}