-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy patha.html
More file actions
70 lines (63 loc) · 2.89 KB
/
a.html
File metadata and controls
70 lines (63 loc) · 2.89 KB
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
<html>
<head>
<title>CS World A Pi Sites</title>
</head>
<body>
<h1>CS World A Pi Sites</h1>
<h2><a href="http://www.spaac.net">Test Link</a></h2>
<iframe id="myIframe" width="0" height="0" src="https://www.classiccotons.com/"></iframe>
<h2><a href="http://192.168.33.220/index.html">Zack</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Dylan</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Katelynne</a></h2>
<h2><a href="http://192.168.32.184/index.html">Erin</a></h2>
<h2><a href="http://192.168.33.30/index.html">Kelly</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Olivia</a></h2>
<h2><a href="http://192.168.32.98/index.html">Sammy</a></h2>
<h2><a href="http://192.168.32.245/index.html">Jack</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Kyle</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Darien</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Bereket</a></h2>
<h2><a href="http://192.168.32.167/index.html">Lindsey</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Adam</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Zoe</a></h2>
<h2><a href="http://192.168.32.94/index.html">Diana</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Alex</a></h2>
<h2><a href="http://192.168.32.156/index.html">Matthew</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Rebecca</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Aliya</a></h2>
<h2><a href="http://192.168.33.34/index.html">Jocey</a></h2>
<h2><a href="http://192.168.33.201/index.html">Rhymiel</a></h2>
<h2><a href="http://192.168.33.39/index.html">Ivan</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Caleb</a></h2>
<h2><a href="http://192.168.xx.xxx/index.html">Matthew</a></h2>
<h2><a href="http://192.168.33.4/index.html">Thea</a></h2>
<h2><a href="http://192.168.33.0/index.html">Jacqui</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");
});
$(function(){
$('#myIframe').ready(function(){
//your code (will be called once iframe is done loading)
alert('google loaded');
});
});
</script>
</body>
</html>