-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
27 lines (26 loc) · 780 Bytes
/
Index.html
File metadata and controls
27 lines (26 loc) · 780 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<title>Convert data to JSON</title>
</head>
<body class="body">
<table id="myTable">
<tbody id="tbody">
<tr>
<th colspan=>Add your Items</th>
<th colspan="2">
<button class="addButton" type="button" onclick="addRow('myTable'); value=''">+</button></th>
</tr>
</tbody>
</table>
<div class='ta-container'>
<button id='toTextArea'>AddJSON to TextArea</button>
<textarea name="123" id="textArea" cols="30" rows="10" ></textarea>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="index.js"></script>
</body>
</html>