-
Notifications
You must be signed in to change notification settings - Fork 1
/
leaderboard.html
75 lines (66 loc) · 2.45 KB
/
leaderboard.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<title>Tweetrivia</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js" type="text/javascript"></script>
<link href="css/style1.css" rel=" stylesheet" type="text/css"/>
<link href="css/leaderboard.css" rel="stylesheet" type="text/css">
</head>
<body onload="parseInit();populateLeaderboards();">
<div id="highScoreDiv2">
<button id="backButton" class="roundedOrangeButton" onClick="playButtonSoundEffect(); goback();">Play</button>
<button id="leaderboardButton2" class="roundedBlueButton" onClick="playButtonSoundEffect(); invertScores();">
View Inverted High Scores
</button>
</div>
<div id="followingScore"></div>
<br><br><br>
<table id="actorLeaderboard" style="width:14%">
<caption id="actorCaption">Actor</caption>
<tr id="actorTR">
<th>User</th>
<th>Score</th>
</tr>
</table>
<table id="musicLeaderboard" style="width:14%">
<caption id="musicCaption">Music</caption>
<tr id="musicTR">
<th>User</th>
<th>Score</th>
</tr>
</table>
<table id="corporationLeaderboard" style="width:14%">
<caption id="corporationCaption">Corporation</caption>
<tr id="corporationTR">
<th>User</th>
<th>Score</th>
</tr>
</table>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<table id="NFLLeaderboard" style="width:14%">
<caption id="nflCaption">NFL</caption>
<tr id="NFLTR">
<th>User</th>
<th>Score</th>
</tr>
</table>
<table id="nbaLeaderboard" style="width:14%">
<caption id="nbaCaption">NBA</caption>
<tr id="nbaTR">
<th>User</th>
<th>Score</th>
</tr>
</table>
<table id="soccerLeaderboard" style="width:14%">
<caption id="soccerCaption">Soccer</caption>
<tr id="SoccerTR">
<th>User</th>
<th>Score</th>
</tr>
</table>
<script src="js/parseDB.js" type="text/javascript"></script>
<script src="http://www.parsecdn.com/js/parse-1.3.4.min.js" type="text/javascript"></script>
<script src="js/leaderboard.js" type="text/javascript"></script>
<script src="js/index.js" type="text/javascript"></script>
</body>
</html>