-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdcca_mapit_speed_test.html
109 lines (90 loc) · 3 KB
/
dcca_mapit_speed_test.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>MapIt</title>
<link rel="stylesheet" type="text/css" href="css/dcca_mapit.css">
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/dcca_mapit.js"></script>
<script>
function getAvgSpeed(rid){
var xhttp;
if (window.XMLHttpRequest) {
// code for modern browsers
xhttp = new XMLHttpRequest();
} else {
// code for IE6, IE5
xhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var jsonReturn = xhttp.responseText;
var obj = JSON.parse(jsonReturn);
}
};
var id = rid;
var url = "hacc/return_result_api.php";
var para = "?rid="+id;
xhttp.open("GET", url+para, true);
xhttp.send();
}
</script>
</head>
<body>
<div id="header_container">
<img id="header_logo" src="copy-dcca-seal-logo.png">
<div id="header_title">Department of Commerce<br>& Consumer Affairs</div>
<h1>DCCA MapIt Broadband Speed Test</h1>
</div>
<br>
<div>
<button id="speed_test_button" onclick="getResults()">START</button>
</div>
<table id="output_table">
<!--<tr>
<td>connection type</td>
<td>Type</td>
</tr>
<tr>
<td>Service Provider:</td>
<td>Provider</td>
</tr>
<td>IP Address:</td>
<td>Address</td>
<tr>
<td>User ID:</td>
<td>Identification #</td>
</tr>
<td>Download Speed</td>
<td>Speed 1</td>
<tr>
<td>Upload Speed</td>
<td>Speed 2</td>
</tr>-->
</table>
<br><br>
<div id="speed_bars">
<div class="bars" id="your_download_speed">
<div class="zippers">|</div>
Download Speed
</div>
<br><br>
<div class="bars">
<div class="zippers">|</div>
Hawaii Average
</div>
<br><br><br>
<div class="bars">
<div class="zippers">|</div>
Upload Speed
</div>
<br><br>
<div class="bars">
<div class="zippers">|</div>
Upload Speed
</div>
<br><br><br>
<button class="main_menu_buttons" onclick="back_to_main()">Main Menu</button>
</div>
</body>
</html>