This is the charts from upwork — testing
Source of date: here that is open to public
Code for divs from Upwork in section below the line.
___________________________
Hello, World! there should be charts below
Individuals
Households
Communities
Economy
Democracy
<script> function buttonClick(county) { document.getElementById('container').style = ''; <!-- preload all charts --> const api = 'https://script.google.com/macros/s/AKfycbxfYV_cAy2mPFH-Re60kxjNXnXEeaeuHyQoymmOKjakKqQ4ZiV61SWbxAV8cqB_nipKYQ/exec'; let url = api; const requestOptions = { method: 'GET', redirect: 'follow' }; fetch(url, requestOptions) .then(response => response.text()) .then(function(result){ result = JSON.parse(result); for (key in result) { for (i=0; i < Object.keys(result[key]).length; i++) { selectChart(county,key,result[key][i]); } } }) .catch(error => console.log('error', error)); } </script>