schedaGP/scriptDownload.js

40 lines
874 B
JavaScript
Raw Normal View History

<script type = 'text/javascript' >
function scaricatiCsv() {
var risposte = jQuery(".wpcf7-form-control"); //e questo è un array di oggetti poi dobbiamo fargli pushare uno per uno il loro valore
2016-12-13 20:40:40 +01:00
var valoribuoni = [];
2016-12-13 20:40:40 +01:00
jQuery(risposte).each(function (index, value) {
valore = "";
console.log(index);
console.log(value);
valore = jQuery(value).val();
valoribuoni.push(valore);
2016-12-13 20:40:40 +01:00
});
2016-12-06 10:59:22 +01:00
var csvRows = [];
2016-12-06 10:59:22 +01:00
2016-12-13 20:40:40 +01:00
csvRows.push(valoribuoni.join());
2016-12-06 10:59:22 +01:00
var csvString = csvRows.join("%0A");
var a = document.createElement('a');
var linktext = "Scarica la scheda e mettila al sicuro";
a.href = 'data:attachment/csv,' + csvString;
a.target = '_blank';
a.download = 'schedaProduzione.csv';
a.innerHTML = linktext;
2016-12-06 10:59:22 +01:00
2016-12-13 20:40:40 +01:00
var mettiloqui = jQuery("form.wpcf7-form");
2016-12-13 20:40:40 +01:00
mettiloqui.append(a);
2016-12-13 20:40:40 +01:00
};
2016-12-13 20:40:40 +01:00
</script>