-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
52 lines (44 loc) · 1.43 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link type="text/css" rel="stylesheet" href="style/oldbrowser.css" />
<!-- jQuery 1.6.2
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<!-- -->
<!-- jQuery 1.8.1
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.1.min.js"></script>
<!-- -->
<!-- jQuery 1.11.1
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<!-- -->
<!-- jQuery 2.1.1 -->
<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<!-- -->
<script type="text/javascript" src="src/oldBrowser.js" ></script>
<script type="text/javascript">
$(document).ready(function(){
$(document).oldBrowser({
text : "Your browser version is not supported. Please update to the latest version of your browser.",
version: {
mozilla : 50,
opera: 50,
msie: 15,
safari: 550,
chrome: 540
},
browserLink: true,
holder: '.d',
debug: true,
closeBtn: true
});
});
</script>
</head>
<body>
<div class="d">
test
</div>
</body>
</html>