This repository was archived by the owner on Nov 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.html
99 lines (94 loc) · 4.37 KB
/
test.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
<!doctype html>
<html>
<head>
<title>Testing File</title>
<script src="https://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/major-finder.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.1/css/selectize.min.css" rel="stylesheet" />
<script src="js/selectize.js"></script>
<style type="text/css">
.selectize-dropdown {
display: none !important;
}
</style>
</head>
<body>
<h1> Major Finder (Version 2.0.0) </h1>
<p> Enter your first year courses seperated by commas </p>
<p>
Campus:
<input type="radio" name="group1" id="r1" value="UTSG" checked>
<label for="item1">St. George</label>
<input type="radio" name="group1" id="r2" value="UTM">
<label for="item13">Mississauga</label>
<input type="radio" name="group1" id="r3" value="UTSC">
<label for="r3">Scarborough</label>
</p>
<input type="text" id="course_input" />
<button onclick="findMajors()">Submit</button>
<div>
<p id="eligible_programs">
</p>
<p>
<div id="georgi" style="display:none">
Due to loose first year requirements we are currently not searching for: <br>
<ul>
<li>Earth and Environmental Systems Major </li>
<li> Ethics, Society and Law Major </li>
<li> International Relations Specialist </li>
<li> Forest Conservation Science Specialist/Major/Minor </li>
<li> Forest Conservation Specialist/Major/Minor </li>
<li> Environmental Geography Specialist/Major </li>
<li> Human Geography Specialist/Major/Minor </li>
<li> Physical and Environmental Geography Specialist/Major/Minor </li>
<li> Geographic Information Systems Minor </li>
<li> Urban Studies Specialist/Major/Minor </li>
<li> Near and Middle Eastern Civilizations Specialist/Major/Minor </li>
<li> Peace, Conflict and Justice Specialist/Major </li>
<li> Physiology Major/Minor </li>
</ul>
</div>
<div id="missy" style="display:none">
Due to loose first year requirements we are currently not searching for: <br>
<ul>
<li>Classical Civilization Major</li>
<li> Diaspora and Transnational Studies</li>
<li> Economics and Political Science</li>
<li> Combined Degree Program: Exceptionality in Human Learning (Specialist), HBSc/Child Study and Education, Master of Arts</li>
<li> Combined Degree Program: Psychology (Specialist / Major), Honours Bachelor of Science/Child Study and Education, Master of Arts </li>
<li> Philosophy</li>
<li> Ethics, Society and Law Minor</li>
<li> South Asian Civilizations Minor</li>
</ul>
</div>
<div id="siberia" style="display:none">
Due to loose first year requirements we are currently not searching for: <br>
<ul>
<li>Classical Civilization Major</li>
<li> Diaspora and Transnational Studies</li>
<li> Economics and Political Science</li>
<li> Combined Degree Program: Exceptionality in Human Learning (Specialist), HBSc/Child Study and Education, Master of Arts</li>
<li> Combined Degree Program: Psychology (Specialist / Major), Honours Bachelor of Science/Child Study and Education, Master of Arts </li>
<li> Philosophy</li>
<li> Ethics, Society and Law Minor</li>
<li> South Asian Civilizations Minor</li>
</ul>
</div>
</p>
<h3 id="course_warning"></h3>
</div>
<script type="text/javascript">
$('#course_input').selectize({
delimiter: [',', ' '],
persist: false,
create: function(input) {
input = input.toUpperCase();
return {
value: input,
text: input
};
}
});
</script>
</body>
</html>