From 2f5869cd9c99f2661c7ad61da8a3dea6422b1ba2 Mon Sep 17 00:00:00 2001 From: redup nomade Date: Tue, 13 Dec 2016 20:40:40 +0100 Subject: [PATCH] csv funzionante ma a primo load --- form7_modulo.html | 1 + scriptDownload.js | 41 +++++++++++++++++++++++++++++++++-------- styleadded.css | 10 +++++++++- 3 files changed, 43 insertions(+), 9 deletions(-) diff --git a/form7_modulo.html b/form7_modulo.html index 55072b7..6340300 100644 --- a/form7_modulo.html +++ b/form7_modulo.html @@ -28,6 +28,7 @@ Nome della realtà produttiva (richiesto) [text* text-439 placeholder "Nome"]Numero di dipendenti [number min:0 max:100 number-202] [radio radio-273 use_label_element default:1 "si" "no"] + [textarea textarea-627 placeholder "Nome realtà - tipo di collaborazione, ..."] diff --git a/scriptDownload.js b/scriptDownload.js index b83cd3f..3d46263 100644 --- a/scriptDownload.js +++ b/scriptDownload.js @@ -1,15 +1,23 @@ +var risposte = jQuery(".wpcf7-form-control"); //e questo è un array di oggetti poi dobbiamo fargli pushare uno per uno il loro valore + +var valoribuoni = []; + +jQuery(risposte).each(function( index, value ) { +valore=""; +console.log(index); +console.log(value); +valore = jQuery(value).val(); +valoribuoni.push(valore); + +}); -var A = [['n','sqrt(n)']]; -for(var j=1; j<5; ++j){ - A.push([j, Math.sqrt(j)]); -} var csvRows = []; -for(var i=0, l=A.length; i \ No newline at end of file +} + +.post-content form ul { + margin: 0 0 1.6em 3em; + padding: 1em; + border: dotted 5px sandybrown; +} + + \ No newline at end of file