You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.3 KiB
HTML

5 years ago
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ner.ed</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.0.1/papaparse.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
5 years ago
<style>
body{font-family:Courier;font-size:24px}
</style>
</head>
<body>
<strong>ner.ed</strong><br><br>
<table id="results">
<tbody></tbody>
</table>
5 years ago
<script>
var data;
function handleFileSelect(evt) {
var file = evt.target.files[0];
Papa.parse(file, {
header: true,
delimiter: '\t',
comments: "#",
skipEmptyLines: true,
dynamicTyping: true,
complete: function(results) {
console.log(results);
data = results;
$.each(results.data, function(i, el) {
var row = $("<tr/>");
row.append($("<td/>").text(i));
$.each(el, function(i, cell) {
row.append($("<td/>").text(cell));
});
$("#table tbody").append(row);
});
}
});
}
$(document).ready(function() {
$("#tsv-file").change(handleFileSelect);
5 years ago
});
5 years ago
</script>
<input type="file" id="tsv-file" name="files"/>
</body>
</html>