-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (39 loc) · 1.35 KB
/
index.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
43
44
<!DOCTYPE HTML>
<html>
<head>
<title>Reading files with pure javascript</title>
<meta charset="UTF-8">
<meta name="name" content="Christian Galvez">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
</head>
<body class="container">
<div class="row mb-4 justify-content-md-center">
<div class="col-sm-6">
<h3>Example of Reading Files</h3>
<input id="fileSelector" type="file" multiple="false" onchange="fileSelected()" accept=".txt, .css, .html, .js">
</div>
</div>
<div class="row pt-4">
<div class="col-sm-6">
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Size (bytes)</th>
</tr>
</thead>
<tbody>
<tr id="trToFill">
</tr>
</tbody>
</table>
</div>
<div class="col-sm-6">
<textarea id="resultText" class="w-100" style="height: 500px;"></textarea>
</div>
</div>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="./script.js"></script>
</body>
</html>