-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
53 lines (47 loc) · 1.04 KB
/
index.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
<html>
<head>
<title>User Info Test</title>
<link rel="stylesheet" href="css/main.css" type="text/css" />
</head>
<body>
<div>
<p>
<span>Browser: </span >
<span id="browserText">
</span >
</p >
</div>
<div>
<p>
<span>OS: </span >
<span id="osText">
</span >
</p >
</div>
<div>
<p>
<span>Flash Version: </span >
<span id="flashText">
</span >
</p >
</div>
<div>
<p>
<span>Connection Speed: </span >
<span id="connectionSpeedText">
</span >
</p >
</div>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.min.js"></script>
<script type="text/javascript" src="js/BrowserDetect.js"></script>
<script type="text/javascript" src="js/flash_detect_min.js"></script>
<script type="text/javascript" src="js/downloadSpeed.js"></script>
<script type="text/javascript">
$('#browserText').html(BrowserDetect.browser + " " + BrowserDetect.version);
$('#osText').html(BrowserDetect.OS);
$('#flashText').html(FlashDetect.installed ?
FlashDetect.major + "." + FlashDetect.minor + "." + FlashDetect.revision :
"Not Installed");
</script>
</body>
</html>