-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.09 KB
/
Copy pathindex.html
File metadata and controls
35 lines (32 loc) · 1.09 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Demo</title>
<script src="bower_components/jquery/dist/jquery.js" type="text/javascript"></script>
<script src="src/js/model/Result.js" type="text/javascript"></script>
<script src="src/js/model/ResultsContainer.js" type="text/javascript"></script>
<script src="src/js/model/Error.js" type="text/javascript"></script>
<script src="src/js/controller/controller.js" type="text/javascript"></script>
<script src="src/js/view/resultView.js" type="text/javascript"></script>
<script src="src/js/view/resultViewContainer.js" type="text/javascript"></script>
<script src="src/js/view/errorMessageView.js" type="text/javascript"></script>
<script src="src/js/main.js" type="text/javascript"></script>
</head>
<body>
<div id="eg1">
<h1>Q1</h1>
<input onkeyup="cont.getData(event,'results1', false)">
<div id="results1"/>
</div>
<div id="eg2">
<h1>Q2</h1>
<input onkeyup="cont.getData(event,'results2', true)">
<div id="results2"/>
</div>
<div id="eg3">
<h1>Q3</h1>
<input onkeyup="cont.getDataError(event,'results3', true)">
<div id="results3"/>
</div>
</body>
</html>