-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebworkertest1.html
57 lines (40 loc) · 1.02 KB
/
webworkertest1.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
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!--
get the google hosted cdn jquery into the program
-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/jquery-ui.min.js"></script>
<script type="text/javascript">
// When the window has loaded, DOM is ready. Run the mainInit() function.
function init() {
mainInit();
}
window.onload = init;
</script>
<!-- our main script -->
<script src="main.js"></script>
<title>WebWorker Test 1</title>
</head>
<body>
<div>This is a WebWorker test 1.</div>
<hr>
<div id="input_0">
</div>
<div id="input_1">
</div>
<div id="input_2">
</div>
<div id="input_3">
</div>
<div id="input_4">
</div>
<div id="input_5">
</div>
<hr>
<div id="output_area">
</div>
</body>
</html>