forked from aaronsnoswell/csvjson.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
42 lines (34 loc) · 1.07 KB
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>csvjson.js demo page</title>
</head>
<body onload="convert();">
<h1>csvjson.js demo page</h1>
<p>Inspect the page source to see what's going on ;)</p>
<h4>Input CSV data:</h4>
<pre id="input">"Name","Address","Age"
"Joe Bloggs","15 Example Ave, Sunny hills",25
"Sam Smith","2012 Ursula Pde, Groceryville",40</pre><br />
<h4>Ouput CSV data (should be identical):</h4>
<pre id="output"></pre>
</body>
<script type="text/javascript" src="csvjson.js" ></script>
<script type="text/javascript">
function convert() {
var input = document.getElementById("input").innerHTML;
var output_json = csvjson.csv2json(input, {
delim: ",",
textdelim: "\""
});
console.log("Converted CSV to JSON:", output_json);
var output_csv = csvjson.json2csv(output_json, {
delim: ",",
textdelim: "\""
});
console.log("Converted JSON to CSV:", output_csv);
document.getElementById("output").innerHTML = output_csv;
}
</script>
</html>