-
Notifications
You must be signed in to change notification settings - Fork 52
/
b.html
54 lines (53 loc) · 2.44 KB
/
b.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
<html>
<head>
<title>CS World B Pi Sites</title>
</head>
<body>
<h1>CS World B Pi Sites</h1>
<h2><a href="http://192.168.xx.xxx/index.html">Ben</a></h2>
<h2><a href="http://192.168.33.74/index.html">Jackie</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Caleb</a></h2>
<h2><a href="http://192.168.33.180/index.html">Savannah</a></h2>
<h2><a href="http://192.168.32.57/index.html">Russell</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Mikey</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Will</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Vanessa</a></h2>
<h2><a href="http://192.168.32.87/index.html">Camilia</a></h2>
<h2><a href="http://192.168.32.70/index.html">Erica</a></h2>
<h2><a href="http://192.168.33.124/index.html">Chris</a></h2>
<h2><a href="http://192.168.33.157/index.html">Larissa</a></h2>
<h2><a href="http://192.168.32.118/index.html">Miriam</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Joseph</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Jet</a></h2>
<h2><a href="http://192.168.32.225/index.html">Nina</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Sasha</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Kwame</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Marvin</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Giselle</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Paulette</a></h2>
<h2><a href="http://192.168.33.224/index.html">Natasha</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">RK</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Jeremy</a></h2>
<!-- Do not edit below this line -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript">
$.fn.extend({
checkPageHead: function (){
$.each(this, function(){
var $link = $(this);
$.ajax({
type: 'HEAD',
url: $link.attr("href"),
error: function(){
$link.css("color", "gray");
}
});
});
}
});
$(document).ready(function(){
$("a").checkPageHead("default.html");
});
</script>
</body>
</html>