-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
180 lines (130 loc) · 6.92 KB
/
index.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html>
<head>
<title> Home | CCIS2591 Spring 2017 </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<!-- Load bootswatch-based Morea theme file. -->
<link rel="stylesheet" href="/spring-2017/css/themes/spacelab/bootstrap.min.css">
<link rel="stylesheet" href="/spring-2017/css/style.css">
<link rel="stylesheet" href="/spring-2017/css/syntax.css">
<link rel="shortcut icon" href="/spring-2017/favicon.ico" type="image/x-icon"/>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.2/html5shiv.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/respond.js/1.2.0/respond.js"></script>
<![endif]-->
<!-- Load Bootstrap JavaScript components -->
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script type="text/javascript"
src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-63189236-4', 'auto');
ga('send', 'pageview');
</script>
<script>
$(window).load(function () {
// If on a page associated with a navbar item, make its navbar item 'active'.
$('.navbar-nav').find('a[href="' + location.pathname + '"]').parents('li').addClass('active');
});
</script>
</head>
<body>
<!-- Responsive navbar -->
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<!-- Display three horizontal lines when navbar collapsed. -->
<span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/spring-2017/index.html"> CCIS2591 Spring 2017 </a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/spring-2017/modules/">Modules</a></li>
<li><a href="/spring-2017/outcomes/">Outcomes</a></li>
<li><a href="/spring-2017/readings/">Readings</a></li>
<li><a href="/spring-2017/experiences/">Experiences</a></li>
<li><a href="/spring-2017/assessments/">Assessments</a></li>
<li><a href="/spring-2017/schedule/">Schedule</a></li>
</ul>
</div>
</div>
</div>
<div class="breadcrumb-bar">
<div class="container">
<ol class="breadcrumb">
<li class="active">Home</li>
</ol>
</div>
</div>
<div class="container">
<h2 id="welcome-to-ccis2591-spring-2017">Welcome to CCIS2591 Spring 2017</h2>
<h3 id="course-description">Course Description</h3>
<p>This course is an introduction to developing Web pages using JavaScript with emphasis on industry coding practices. Topics include: core JavaScript (syntax, basics, variables, functions), DOM (Document Object Model), object hierarchy, events, regular expressions, strings, cookies, windows, forms, and related objects.</p>
<h3 id="course-objectives">Course Objectives</h3>
<p>The following objectives will be addressed in the course:</p>
<ul>
<li>Demonstrate the use of JavaScript, HTML and CSS to build web applications</li>
<li>Use core JavaScript language features such as functions/methods, conditional statements, loops, and switches</li>
<li>Collect values using loops, arrays, and objects</li>
<li>Validate and respond to user input using functions and events</li>
<li>Write simple regular expressions</li>
<li>Read and write to local storage</li>
<li>Use good JavaScript coding style</li>
<li>Use JSON to serialize data for storage</li>
<li>Detect browser versions and available features</li>
<li>Demonstrate use of JavaScript debuggers and browser developer tools</li>
<li>Demonstrate the use of relevant third party libraries</li>
</ul>
<h2 id="text-book">Text Book</h2>
<p>The text book for this course is required and will be your main source for learning throughout most of the course. The web site content will not repeat information from the text, only provide supplementary material.</p>
<div style="padding:10px 20px">
Learning JavaScript: JavaScript Essentials for Modern Application Development, 3rd Edition,<br />
by Ethan Brown<br />
ISBN 13: 978-1491914915<br />
ISBN-10: 1491914912<br />
</div>
<h2 id="course-staff">Course Staff</h2>
<h3 id="instructor">Instructor</h3>
<div class="row">
<div class="col-xs-4 col-md-2">
<img src="https://avatars3.githubusercontent.com/u/5143491" class="img-responsive" alt="Picture of Mary" />
</div>
<div class="col-xs-8 col-md-10">
<p><b>Mary Mosman</b> <br />
<a href="mailto:[email protected]">[email protected]</a><br />
(Please include your course name/number in the subject line of your email.)
</p>
<b>Office Hours</b>
<p>On campus office hours vary each semester and are listed in the course syllabus.</p>
<p>Online appointments are available M-F, but must be requested and confirmed via email at least a day in advance. Online meetings are setup using Zoom and allow screen sharing, voice communication, and optionally video. An link to join the meeting will be sent to you via email shortly before the scheduled meeting time.</p>
</div>
</div>
</div>
<script src="/spring-2017/js/scrollIfAnchor.js"></script>
<div class="footer-background hidden-print">
<footer>
<div class="container page-footer">
<p>This course was developed for <a href="https://www.hennepintech.edu/">Hennepin Technical College</a> by <a href="https://www.linkedin.com/in/mary-mosman-43523976">Mary Mosman</a>.</p>
<p>This work is licensed under the <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a> <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License" style="vertical-align: top;" src="https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png" /></a></p>
<p style="margin: 0">This website is developed using the <a href="http://morea-framework.github.io/">Morea Framework</a><br>
Last update on: <span>2017-01-26 21:54:48 -0600</span></p>
</div>
</footer>
</div>
</body>
</html>