-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpredictions_governors.html
133 lines (105 loc) · 4.44 KB
/
predictions_governors.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<!--Infolinks Ads-->
<script type="text/javascript">
var infolinks_pid = 3141956;
var infolinks_wsid = 0;
</script>
<script type="text/javascript" src="//resources.infolinks.com/js/infolinks_main.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-105777188-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-105777188-3');
</script>
<!--Ads!
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-3199971781039212",
enable_page_level_ads: true
});
</script>-->
<title>Governor Forecasts | 50Fifty</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css"/>
<!--jQuery, Maps, other scripts-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/base/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css">
<script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
<!--Custom scripts-->
<script type="text/javascript" src="scripts/utilities.js"></script>
<script type="text/javascript" src="scripts/predictions.js"></script>
<script type="text/javascript" src="scripts/page_script_all.js"></script>
<script type="text/javascript" src="scripts/page_script_predictions_governors.js"></script>
</head>
<body>
<div class="nav">
<a href="index.html"><img id="nav-logo" src="50fifty_logo.png" /></a>
<!--
<a href="live.html">
<div class="alert">
<p><b></b>Live: Midterms Liveblog</b></p>
</div>
</a>-->
<div class="nav-links">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" id="nav-link-selected" href="predictions.html">Predictions</a>
<a class="nav-link" href="stories.html">Stories</a>
<a class="nav-link" href="about.html">About</a>
</div>
</div>
<div class="header">
<p>Select State:</p>
<div class="select-style">
<select id="select-state">
<option value="All">All States</option>
</select>
</div>
<p id="reset-link">Reset</p>
<div class="predictions-links" id="predictions-nav">
<a class="a" href="predictions.html">For You</a>
<a class="a" href="predictions_senate.html">U.S. Senate</a>
<a class="a" href="predictions_house.html">U.S. House</a>
<a class="a" id="link-selected" href="predictions_governors.html">Governors</a>
<a class="a" href="predictions_state_senates.html">State Senates</a>
<a class="a" href="predictions_state_houses.html">State Houses</a>
</div>
<hr id="predictions-nav-hr">
</div>
<div class="main-page" id="main-page">
<div class="main-section">
<h2>Top Governors and State Officials Races</h2>
<p class="loading">Loading...</p>
</div>
<div class="all-races">
<h2>All Races</h2>
<p class="loading">Loading...</p>
<table id="all-races-table" class="row-border hover compact">
<thead>
<tr>
<th>Race</th>
<th>Candidates</th>
<th>Projected Vote Share</th>
<th>Rating</th>
<th>Chances of Winning</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<div class='how-it-works'>
<a href="methedology.html">How the election prediction model works ▸</a>
</div>
<div class="footer">
<p>Copyright © 2018 Noah Covey & Sam Mahle</p>
</div>
</body>
</html>