-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
35 lines (33 loc) · 914 Bytes
/
example.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
<html>
<head>
<title>Reactive list example</title>
</head>
<body>
<table id="rows">
</table>
<div style="clear:left;margin-top:10px">
<input id="add"
style="float:left"
type="button"
value="Add">
<input id="remove"
style="float:left"
type="button"
value="Remove">
<div style="float:left;margin-left:5px;margin-top:3px">
at index
</div>
<input style="float:left;margin-left:5px"
id="indexValue"
type="text"
size="5">
</div>
<div style="clear:left">
<input type="text" id="new-value">
<input type="button" id="change-value" value="Change value">
</div>
<!-- Element used as template to produce subsequent -->
<script src="build/build.js"></script>
<script src="example.js"></script>
</body>
</html>