AK COVID 19

by Piyush Baliyan

HTML

<script src='https://cdnjs.cloudflare.com/ajax/libs/tabletop.js/1.5.1/tabletop.min.js'></script>

JavaScript

var publicSpreadsheetUrl = 'https://docs.google.com/spreadsheets/d/13-dZMuevDO1Qz805mc54vtXSCehCmrRl7vqXF4Az9b8/edit';

  function init() {
    Tabletop.init( { key: publicSpreadsheetUrl,
                     callback: showInfo,
                     simpleSheet: false, prettyColumnNames: true } )
  }

  function showInfo(data, tabletop) {
    console.log(data, tabletop);
    
  }

  window.addEventListener('DOMContentLoaded', init)