-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnerddeath.html
More file actions
63 lines (48 loc) · 890 Bytes
/
nerddeath.html
File metadata and controls
63 lines (48 loc) · 890 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
<!--
body {cursor: url(http://www.rw-designer.com/cursor-extern.php?id=2698);}
-->
</style>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
var hideTags = new Array();
var addToArray = function(tagArray, element)
{
tagArray.unshift(element)
}
var declareTagHides = function(tagArray)
{
for (tag in tagArray)
{
$(tag).hide();
}
}
$(document).ready(function(){
$("button").mouseover(function(){
$(this).fadeOut();
$("h1").toggle();
// addToArray(hideTags, this);
});
});
</script>
</head>
<body>
<center>
<script type="text/javascript">
for (var i = 0; i < 15; i++) {
for (var j = 0; j < 15; j++) {
document.writeln('<button>(@_@^)</button>');
}
document.writeln('<br>');
if (i%5 == 0)
{
}
}
</script>
<h1>DEATH UNTO THE NERDS!</h1><br>
</center>
</body>
</html>