¿Ves como te damos más info sobre el evento para asegurarnos de que te pases a ver a los gatitos de Pavía?Very mindful, very demure 😌

¿Tienes otra pregunta? Contáctame por WhatsApp (soy maja jurao)

Contador en Google Sheets

Contador: cargando...

const API_URL = 'https://script.google.com/macros/s/AKfycbzYpOBkIHIbJqBmS1kF41ihrldaEClP8-65pVq4jjOJNNv-WtRtVChzIh8kEjkteTzk/exec'; function loadCounter() { fetch(API_URL + '?action=doGet').then(response => response.text()).then(data => { document.getElementById('counter').innerText = data; }).catch(error => { console.error('Error al cargar el contador:', error); }); } function incrementCounter() { fetch(API_URL + '?action=doPost', {method: "POST"}).then(response => response.text()).then(data => { document.getElementById('counter').innerText = data; }).catch(error => { console.error('Error al incrementar el contador:', error); }); } document.getElementById('incrementButton').addEventListener('click', incrementCounter); loadCounter();