Vhjjj

vbnnmm



<script>
async function updateTotal() {
  try {
    const res = await fetch("https://script.google.com/macros/s/xxxxxxxxxxxxxxxxxx/exec"); // Google Apps Script URL
    let count = await res.text();
    
    
    count = parseInt(count, 10);
    if(isNaN(count)) count = 0;

    document.getElementById(&#39;totalviews&#39;).innerText = 
      count &gt;= 1000 ? (count / 1000).toFixed(1) + &#39;k&#39; : count.toLocaleString();
    
  } catch(e) {
    console.error(e);
    document.getElementById(&#39;totalviews&#39;).innerText = &quot;Error&quot;;
  }
}


updateTotal();


setInterval(updateTotal, 30000);
</script>


0

0
0
Loading...

1 comment

  1. Khin Maung Win
    Khin Maung Win
    Good
Loading ratings…
whatsapp