You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Questo bookmarklet, lanciato mentre viene visualizzata la pagina https://www.dep.lazio.it/covid/covid_map.php , aggiunge in fondo alla pagina stessa un'area di testo contenente tutti i dati dell'ultima schermata, quella con l'evoluzione temporale:
Questo bookmarklet, lanciato mentre viene visualizzata la pagina https://www.dep.lazio.it/covid/covid_map.php , aggiunge in fondo alla pagina stessa un'area di testo contenente tutti i dati dell'ultima schermata, quella con l'evoluzione temporale:
javascript:tb = document.createElement("textarea");tb.setAttribute("cols",200);tb.setAttribute("rows",20);dataSequence.forEach(element => tb.innerHTML += JSON.stringify(element.data) + "\n" ) ;intestazione = ""; for (i=0; i< Highcharts.charts[1].series[0].data.length; i++ ) { intestazione += Highcharts.charts[1].series[0].data[i].properties.name + "," ; } tb.innerHTML = intestazione + tb.innerHTML;document.body.appendChild(tb);
Altre volte funziona questo:
javascript: javascript:tb = document.createElement("textarea");tb.setAttribute("cols",200);tb.setAttribute("rows",20);dataSequence.forEach(element => tb.innerHTML += JSON.stringify(element.data) + "\n" ) ;intestazione = ""; for (i=0; i< Highcharts.charts[1].series[0].data.length; i++ ) { intestazione += Highcharts.charts[1].series[0].data[i].comune + "," ; } tb.innerHTML = intestazione + tb.innerHTML;document.body.appendChild(tb);
In forma leggibile:
The text was updated successfully, but these errors were encountered: