-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.html
2137 lines (1826 loc) · 78.3 KB
/
example.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="./images/favicon.ico">
<title>Suggestr</title>
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<!-- Supporting Scripts -->
<script type="text/javascript" src="/Static/JS/GlobalJS/universalFunctions.js"></script>
<!-- Latest compiled and minified bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="/Static/Styles/GlobalStyle/global.css">
</head>
<body>
<div class="tutorial">
</div>
<div class="page-header">
<h1>Suggestr</h1>
<h4>Helpful course suggestions based on your course history.</h4>
<!--<div class="class-list-title1">Course History</div>
<div class="class-list-title2">Course Suggestions</div>-->
</div>
<div class="row" id="page-body">
<script type="text/javascript">
$(document).ready(function(){
// **************** POSTPONE COURSE FROM SESSION ****************
$(document).on('click', 'div.panel-heading div.row div.col-md-5 div.btn-group button.btn-danger', function(){
// Hide/remove elements
$(this).parent('div.btn-group').parent('div.col-md-5').parent('div.row').parent('div.panel-heading').parent('div.single-course').slideUp(400, function(){
$(this).remove();
});
});
/*
// **************** IGNORE COURSE FROM SESSION ****************
$(document).on('click', 'div.panel-heading div.row div.col-md-5 div.btn-group button.btn-danger', function(){
$elem = $(this);
// Mark course as ignored in the model
$.post('/a.php?p=IgnoreCourse', {course_id: $('div.panel-heading input#course_id').val()}, function(d){
if(!getAjaxStatus(d)){
alert('Sorry, there was an error.');
}else{
// Hide/remove elements
$elem.parent('div.btn-group').parent('div.col-md-5').parent('div.row').parent('div.panel-heading').parent('div.single-course').slideUp(400, function(){
$(this).remove();
});
}
});
// Clear search box
$("div#content div#classSearch input#classSearchField").val("");
//doneTyping();
});*/
// **************** TOOK COURSE TO SESSION ****************
$(document).on('click', 'div.panel-heading div.row div.col-md-5 div.btn-group button.btn-success', function(){
$elem = $(this);
//alert($('div.panel-heading input#course_id').val());
// Mark course as ignored in the model
//alert()
$.post('/a.php?p=TookCourse', {course_id: $elem.siblings('input#course_id').val().trim()}, function(d){
if(!getAjaxStatus(d)){
alert('Sorry, there was an error.');
}else{
// Hide/remove elements
// Add course to left-hand list of courses
//getting variables from right-hand
var id = $elem.siblings('input#course_id').val().trim();
var number = $elem.parent('div.btn-group').parent('div.col-md-5').siblings('div.col-md-7').children('h3').children('span:first').text().trim();
var name = $elem.parent('div.btn-group').parent('div.col-md-5').siblings('div.col-md-7').children('h3').children('span:last').text().trim();
//Adding class css/html to left-hand
$("div#sidebar div.list-group ul#list-took div.tookList")
.append('<li class="list-group-item" style="display: none;background-color:#e5ffe5;">'+'<input type="hidden" id="course_id" value="'+id+'" />'+'<span class="badge XButton">X</span>'+'<span class="badge">'+number+'</span>'+name+'</li>');
$("div#sidebar div.list-group ul#list-took div.tookList li.list-group-item:last").slideDown(400);
//Removing class from right panel,(suggestion and search area)
$elem.parent('div.btn-group').parent('div.col-md-5').parent('div.row').parent('div.panel-heading').parent('div.single-course').slideUp(400, function(){
$(this).remove();
});
}
});
});
// **************** ADD COURSE TO SESSION ****************
$(document).on('click', 'div.panel-heading div.row div.col-md-5 div.btn-group button.btn-primary', function(){
$elem = $(this);
//alert($('div.panel-heading input#course_id').val());
// Mark course as ignored in the model
//alert()
$.post('/a.php?p=AddCourse', {course_id: $elem.siblings('input#course_id').val().trim()}, function(d){
if(!getAjaxStatus(d)){
alert('Sorry, there was an error.');
}else{
// Hide/remove elements
// Add course to left-hand list of courses
var id = $elem.siblings('input#course_id').val().trim();
var number = $elem.parent('div.btn-group').parent('div.col-md-5').siblings('div.col-md-7').children('h3').children('span:first').text().trim();
var name = $elem.parent('div.btn-group').parent('div.col-md-5').siblings('div.col-md-7').children('h3').children('span:last').text().trim();
//Can I get an AJAX call to return a particular class window based on certain values?
//$("div#sidebar div.list-group ul#list-add")
// .append('<li class="list-group-item" style="display: none;background-color:#e5f2ff;">'+'<input type="hidden" id="course_id" value="'+id+'" />'+'<span class="badge XButton">X</span>'+'<span class="badge">'+number+'</span>'+name+'</li>');
$("div#sidebar div.list-group ul#list-add div.addList")
.append('<li class="list-group-item" style="display: none;background-color:#e5f2ff;">'+'<input type="hidden" id="course_id" value="'+id+'" />'+'<span class="badge XButton">X</span>'+'<span class="badge">'+number+'</span>'+name+'</li>');
//Removing from right-side suggestions or search.
$("div#sidebar div.list-group ul#list-add div.addList li.list-group-item:last").slideDown(400);
$elem.parent('div.btn-group').parent('div.col-md-5').parent('div.row').parent('div.panel-heading').parent('div.single-course').slideUp(400, function(){
$(this).remove();
});
}
});
});
$('div.panel-heading div.row div.col-md-5 div.btn-group button.btn-success').mouseenter(function() {
$elem = $(this);
$('ul#list-took li#description').css("background-color","#e5ffe5");
}).mouseleave(function(){
$elem = $(this);
$('ul#list-took li#description').css("background-color","#fff");
});
$('div.panel-heading div.row div.col-md-5 div.btn-group button.btn-primary').mouseenter(function() {
$elem = $(this);
$('ul#list-add li#description').css("background-color","#e5f2ff");
}).mouseleave(function(){
$elem = $(this);
$('ul#list-add li#description').css("background-color","#fff");
});
// **************** REMOVE COURSE FROM SESSION ****************
$(document).on('click', 'div#sidebar div.list-group ul li.list-group-item span.XButton', function(){
$elem = $(this);
// Mark course as ignored in the model
$.post('/a.php?p=RemoveCourse', {course_id: $elem.siblings("input#course_id").val().trim()}, function(d){
if(!getAjaxStatus(d)){
alert('Sorry, there was an error.');
//alert(d);
}else{
// Hide/remove elements
$elem.parent('li.list-group-item').slideUp(400, function(){
$(this).remove();
//doneTyping(); // Rerun the search in case new options are now avaliable...
});
}
});
});
// **************** SEARCH ****************
//setup before functions
var typingTimer; //timer identifier
var doneTypingInterval = 100; //time in ms, 5 second for example
var $input = $('input#classSearchField');
//on keyup, start the countdown
$input.on('keyup', function () {
clearTimeout(typingTimer);
typingTimer = setTimeout(doneTyping, doneTypingInterval);
});
//on keydown, clear the countdown
$input.on('keydown', function () {
clearTimeout(typingTimer);
});
//user is "finished typing," do something
function doneTyping (){
$("div#courseResultsArea").html("");
$("div#courseResultsArea").html('<img src="/images/ajax-loader.gif" alt="loading" style="width:16px;height:16px;">');
$.post('/a.php?p=Search', {q: $input.val()}, function(d){
if(getAjaxStatus(d)){
// Everything went well
if($input.val() === ''){
$("div#courseResultsArea").html('');
}else{
$("div#courseResultsArea").html(getAjaxData(d));
}
}else{
//alert(getAjaxFailureReason(d));
}
});
}
//******************RESET SUGGESTIONS BUTTON******************/
$(document).on('click', 'div.btn-container-suggestr button.btn-primary', function(){
$("div#courseResultsArea").html("");
$("div#courseResultsArea").html('<img src="/images/ajax-loader.gif" alt="loading" style="width:16px;height:16px;">');
$.post('/a.php?p=Suggest',function(d){
if(getAjaxStatus(d)){
// Everything went well
$("div#courseResultsArea").html(getAjaxData(d));
}else{
alert(getAjaxFailureReason(d));
}
});
});
$(document).on('click', 'div.btn-container-reset button.btn-info', function(){
$.post('/a.php?p=Reset',function(d){
alert("Sent");
if(getAjaxStatus(d)){
// Everything went well
alert("worked");
}else{
alert(getAjaxFailureReason(d));
}
});
});
//*****************ADD tag count*****************//
$(document).on('click', 'div.panel-bottom div.row div.col-md-11 div.btn-group button.btn-default', function(){
var $course_id = $(this).parent('div.btn-group').parent('div.col-md-11').parent('div.row').parent('div.panel-bottom').siblings("div.panel-heading").children('input#course_id').val();
var $tag_id = $(this).siblings('input#tag_id').val();
var $tag_name = $(this).children(".tagName").html();
var $tag_count = $(this).children(".tagCount").html();
var $final_position = $(this).children(".tagCount");
var $num = 1;//adding one vote here.
var $buttonItself = $(this);
//PERHAPS ALLOW TO RETRACT VOTE in the future by passing in -1, and deleting the initial entry in the table.
//$(this).css({"background-color": '#FF4500'});
$.post('/a.php?p=AddTag', {course_id: $course_id, tag_id: $tag_id, tag_name: $tag_name,num: $num} ,function(d) {
if(!getAjaxStatus(d)){//If you voted twice, error will be here.
$buttonItself.css({"background-color": '#FF4500'});
$final_position.html(parseInt($tag_count)-1);
}else{
$final_position.html(parseInt($tag_count)+1);
$buttonItself.css({"background-color": 'green'});
//$buttonItself.animate({backgroundColor: '#00C957'}, 'slow');
//$buttonItself.animate({backgroundColor: '#AAAAAA'}, 'slow');
}
});
});
//QUESTIONS!!
$(document).on("click",".major",function(){
var X=$(this).attr('id');
if(X===1) {
$(".submenu").hide();
$(this).attr('id', '0');
}else{
$(".submenu").show();
$(this). attr('id', '1');
}
});
//Mouse click on sub menu
$(".submenu").mouseup(function(){
return false;
});
//Mouse click on my account link
$(".account").mouseup(function() {
return false;
});
//Document Click
$(document).mouseup(function(){
$(".submenu").hide();
$(".major").attr('id', '');
});
//Close help option 1
});
</script>
<div class="col-md-5" id="sidebar">
<div class = "list-group" id="questions">
<!--QUESTIONS-->
<!--<div class ="list-group-item">
<span>
Answer these questions about yourself.
</span>
</div>-->
<!--<div class = "questions">-->
<div class="form-group">
<input type="text" class="form-control" id="major" placeholder="Input Major">
</div>
<!--</div>-->
</div>
<div class="list-group" id="classes">
<!--SEARCHBAR-->
<ul id="list-took">
<li class="list-group-item" id="description">
<!--<div class = "side-options">
<span class="badge XButton">X</span>
</div>-->
<span>
Press "Took" on classes you've taken.
</span>
</li>
<li class="list-group-item">
<div class="input-group" id="classSearch">
<input type="text" id="classSearchField" class="form-control" placeholder="Search for courses by typing part of the name or title" autocomplete="off">
</div>
</li>
<!-- not sure of how styling this be.<br>-->
<div class = "tookList">
<li class="list-group-item" style="background-color:#e5ffe5">
<input type="hidden" id="course_id" value="35997" />
<span class="badge XButton">X</span>
<!-- How to make this look better. Also, class should be unique no?
<span class="badge">ADD TAG</span>-->
General Psychology
<span class="badge">1200</span>
</li>
<li class="list-group-item" style="background-color:#e5ffe5">
<input type="hidden" id="course_id" value="36316" />
<span class="badge XButton">X</span>
<!-- How to make this look better. Also, class should be unique no?
<span class="badge">ADD TAG</span>-->
Calculus Ii
<span class="badge">1020</span>
</li>
<li class="list-group-item" style="background-color:#e5ffe5">
<input type="hidden" id="course_id" value="35483" />
<span class="badge XButton">X</span>
<!-- How to make this look better. Also, class should be unique no?
<span class="badge">ADD TAG</span>-->
Computer Science I
<span class="badge">1100</span>
</li>
</div>
</ul>
<!--<div class="arrow-down" style="border-top: 20px solid#4cae4c;"></div>-->
<br>
<ul id="list-add">
<li class="list-group-item" id="description">
<span>
Press "Add" on courses you want to take next semester.
</span>
</li>
<!--<div class="arrow-down" style="border-top: 20px solid #2e6da4;"></div>-->
<div class = "addList">
</div
</ul>
<div class = "btn-container-suggestr">
<button type="button" class="btn btn-primary">Suggest</button>
</div>
<!--<div class = "btn-container-reset">
<button type="button" class="btn btn-info">RESET</button>
</div>-->
</div>
</div> <!-- /Sidebar -->
<div class="col-md-7">
<div class="container">
<div id="content">
<div class="panel-default" id="courseResultsArea">
<div class="panel-heading">
<div class = "resultsInfo">
<span>Here are suggestions based on your course history!</span> (<span>40 Results</span>)
</div>
</div>
<div class="single-course">
<div class="panel-heading">
<!-- perhaps move course_id one position up -->
<input type="hidden" id="course_id" value="35500" />
<div class="row">
<div class="col-md-7">
<h3 class="panel-title"><span>1010</span> <span>Calculus I</span></h3>
</div>
<div class="col-md-5">
<div class="btn-group" role="group">
<input type="hidden" id="course_id" value="35500" />
<button type="button" class="btn btn-success">Took</button>
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-danger">Ignore</button>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="row">Functions, limits, continuity, derivatives, implicit differentiation, related rates, maxima and minima, elementary transcendental functions, introduction to definite integral with applications to area and volumes of revolution.</div>
</div>
<!--
<div class="panel-bottom" style="visibility: hidden;">
<div class="row">
<div class="col-md-11">
<div class="btn-group" id="tag-button" role="group">
<input type="hidden" id="tag_id" value="" />
<button type="button" class="btn btn-default">
<span class = "tagName"></span>
<span class = "tagCount"></span>
</button>
</div>
</div>
</div>
</div>-->
</div>
<!-- needs spacing here-->
<div class="single-course">
<div class="panel-heading">
<!-- perhaps move course_id one position up -->
<input type="hidden" id="course_id" value="35505" />
<div class="row">
<div class="col-md-7">
<h3 class="panel-title"><span>1150</span> <span>Honors Physics I</span></h3>
</div>
<div class="col-md-5">
<div class="btn-group" role="group">
<input type="hidden" id="course_id" value="35505" />
<button type="button" class="btn btn-success">Took</button>
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-danger">Ignore</button>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="row"></div>
</div>
<!--
<div class="panel-bottom" style="visibility: hidden;">
<div class="row">
<div class="col-md-11">
<div class="btn-group" id="tag-button" role="group">
<input type="hidden" id="tag_id" value="" />
<button type="button" class="btn btn-default">
<span class = "tagName"></span>
<span class = "tagCount"></span>
</button>
</div>
</div>
</div>
</div>-->
</div>
<!-- needs spacing here-->
<div class="single-course">
<div class="panel-heading">
<!-- perhaps move course_id one position up -->
<input type="hidden" id="course_id" value="35721" />
<div class="row">
<div class="col-md-7">
<h3 class="panel-title"><span>1140</span> <span>Minds And Machines</span></h3>
</div>
<div class="col-md-5">
<div class="btn-group" role="group">
<input type="hidden" id="course_id" value="35721" />
<button type="button" class="btn btn-success">Took</button>
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-danger">Ignore</button>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="row">This course is an introduction to the philosophy of mind and cognitive science. Students meet in small sections to have class discussions and debates about questions like: What are minds? Are minds physical or non-physical? Do we have free will? Does our reliance on technology turn us into cyborgs? How close are we to building an intelligent robot or machine? Do we want to? Students will learn how make a philosophical argument, and how to express them in writing or through an oral presentation. This course is communication intensive.</div>
</div>
<!--
<div class="panel-bottom" style="visibility: hidden;">
<div class="row">
<div class="col-md-11">
<div class="btn-group" id="tag-button" role="group">
<input type="hidden" id="tag_id" value="" />
<button type="button" class="btn btn-default">
<span class = "tagName"></span>
<span class = "tagCount"></span>
</button>
</div>
</div>
</div>
</div>-->
</div>
<!-- needs spacing here-->
<div class="single-course">
<div class="panel-heading">
<!-- perhaps move course_id one position up -->
<input type="hidden" id="course_id" value="36236" />
<div class="row">
<div class="col-md-7">
<h3 class="panel-title"><span>1200</span> <span>Data Structures</span></h3>
</div>
<div class="col-md-5">
<div class="btn-group" role="group">
<input type="hidden" id="course_id" value="36236" />
<button type="button" class="btn btn-success">Took</button>
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-danger">Ignore</button>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="row">Programming concepts: functions, parameter passing, pointers, arrays, strings, structs, classes, templates. Mathematical tools: sets, functions, and relations, order notation, complexity of algorithms, proof by induction. Data structures and their representations: data abstraction and internal representation, sequences, trees, binary search trees, associative structures. Algorithms: searching and sorting, generic algorithms, iterative and recursive algorithms. Methods of testing correctness and measuring performance.</div>
</div>
<!--
<div class="panel-bottom" style="visibility: hidden;">
<div class="row">
<div class="col-md-11">
<div class="btn-group" id="tag-button" role="group">
<input type="hidden" id="tag_id" value="" />
<button type="button" class="btn btn-default">
<span class = "tagName"></span>
<span class = "tagCount"></span>
</button>
</div>
</div>
</div>
</div>-->
</div>
<!-- needs spacing here-->
<div class="single-course">
<div class="panel-heading">
<!-- perhaps move course_id one position up -->
<input type="hidden" id="course_id" value="35952" />
<div class="row">
<div class="col-md-7">
<h3 class="panel-title"><span>1100</span> <span>Physics I</span></h3>
</div>
<div class="col-md-5">
<div class="btn-group" role="group">
<input type="hidden" id="course_id" value="35952" />
<button type="button" class="btn btn-success">Took</button>
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-danger">Ignore</button>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="row">The first semester of a two-semester sequence of interactive courses. Topics include linear and angular kinematics and dynamics, work and energy, momentum and collisions, forces and fields, gravitation, oscillatory motion, waves, sound and interference.</div>
</div>
<!--
<div class="panel-bottom" style="visibility: hidden;">
<div class="row">
<div class="col-md-11">
<div class="btn-group" id="tag-button" role="group">
<input type="hidden" id="tag_id" value="" />
<button type="button" class="btn btn-default">
<span class = "tagName"></span>
<span class = "tagCount"></span>
</button>
</div>
</div>
</div>
</div>-->
</div>
<!-- needs spacing here-->
<div class="single-course">
<div class="panel-heading">
<!-- perhaps move course_id one position up -->
<input type="hidden" id="course_id" value="36040" />
<div class="row">
<div class="col-md-7">
<h3 class="panel-title"><span>1200</span> <span>Physics Ii</span></h3>
</div>
<div class="col-md-5">
<div class="btn-group" role="group">
<input type="hidden" id="course_id" value="36040" />
<button type="button" class="btn btn-success">Took</button>
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-danger">Ignore</button>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="row"></div>
</div>
<!--
<div class="panel-bottom" style="visibility: hidden;">
<div class="row">
<div class="col-md-11">
<div class="btn-group" id="tag-button" role="group">
<input type="hidden" id="tag_id" value="" />
<button type="button" class="btn btn-default">
<span class = "tagName"></span>
<span class = "tagCount"></span>
</button>
</div>
</div>
</div>
</div>-->
</div>
<!-- needs spacing here-->
<div class="single-course">
<div class="panel-heading">
<!-- perhaps move course_id one position up -->
<input type="hidden" id="course_id" value="36254" />
<div class="row">
<div class="col-md-7">
<h3 class="panel-title"><span>1200</span> <span>Introductory Economics</span></h3>
</div>
<div class="col-md-5">
<div class="btn-group" role="group">
<input type="hidden" id="course_id" value="36254" />
<button type="button" class="btn btn-success">Took</button>
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-danger">Ignore</button>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="row">Every society faces the question of choosing how to use its natural and human resources to produce goods and services and how to distribute these resources among its people. This course studies how these choices are made in markets. It also explains the determinants of total output, employment, and inflation. Attention may also be given to special topics such as the environment, trade, and population.</div>
</div>
<!--
<div class="panel-bottom" style="visibility: hidden;">
<div class="row">
<div class="col-md-11">
<div class="btn-group" id="tag-button" role="group">
<input type="hidden" id="tag_id" value="" />
<button type="button" class="btn btn-default">
<span class = "tagName"></span>
<span class = "tagCount"></span>
</button>
</div>
</div>
</div>
</div>-->
</div>
<!-- needs spacing here-->
<div class="single-course">
<div class="panel-heading">
<!-- perhaps move course_id one position up -->
<input type="hidden" id="course_id" value="36303" />
<div class="row">
<div class="col-md-7">
<h3 class="panel-title"><span>2010</span> <span>Multivariable Calculus And Matrix Algebra</span></h3>
</div>
<div class="col-md-5">
<div class="btn-group" role="group">
<input type="hidden" id="course_id" value="36303" />
<button type="button" class="btn btn-success">Took</button>
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-danger">Ignore</button>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="row"></div>
</div>
<!--
<div class="panel-bottom" style="visibility: hidden;">
<div class="row">
<div class="col-md-11">
<div class="btn-group" id="tag-button" role="group">
<input type="hidden" id="tag_id" value="" />
<button type="button" class="btn btn-default">
<span class = "tagName"></span>
<span class = "tagCount"></span>
</button>
</div>
</div>
</div>
</div>-->
</div>
<!-- needs spacing here-->
<div class="single-course">
<div class="panel-heading">
<!-- perhaps move course_id one position up -->
<input type="hidden" id="course_id" value="35466" />
<div class="row">
<div class="col-md-7">
<h3 class="panel-title"><span>1010</span> <span>Introduction To Biology</span></h3>
</div>
<div class="col-md-5">
<div class="btn-group" role="group">
<input type="hidden" id="course_id" value="35466" />
<button type="button" class="btn btn-success">Took</button>
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-danger">Ignore</button>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="row">Introduction to biological systems. Discussion of problems associated with biological organization, scaling, and hierarchy. Major topics covered include evolution, genetics, molecular biology and biotechnology, and ecology. The course considers the biological components of various societal and individual problems. Taught in Web-based, interactive studio mode with emphasis on biological simulations, problem solving, and peer teaching methods.</div>
</div>
<!--
<div class="panel-bottom" style="visibility: hidden;">
<div class="row">
<div class="col-md-11">
<div class="btn-group" id="tag-button" role="group">
<input type="hidden" id="tag_id" value="" />
<button type="button" class="btn btn-default">
<span class = "tagName"></span>
<span class = "tagCount"></span>
</button>
</div>
</div>
</div>
</div>-->
</div>
<!-- needs spacing here-->
<div class="single-course">
<div class="panel-heading">
<!-- perhaps move course_id one position up -->
<input type="hidden" id="course_id" value="36000" />
<div class="row">
<div class="col-md-7">
<h3 class="panel-title"><span>2800</span> <span>Introduction To Sports Psychology</span></h3>
</div>
<div class="col-md-5">
<div class="btn-group" role="group">
<input type="hidden" id="course_id" value="36000" />
<button type="button" class="btn btn-success">Took</button>
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-danger">Ignore</button>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="row">An introduction to psychology as applied to sport; the topics covered include history of sport behavior, principles of learning and their application, anxiety and arousal, motivation, leadership, cohesion, audience effects, aggression, personality assessment, female athletes, youth in sport, coach behavior, and physical activity for all.</div>
</div>
<!--
<div class="panel-bottom" style="visibility: hidden;">
<div class="row">
<div class="col-md-11">
<div class="btn-group" id="tag-button" role="group">
<input type="hidden" id="tag_id" value="" />
<button type="button" class="btn btn-default">
<span class = "tagName"></span>
<span class = "tagCount"></span>
</button>
</div>
</div>
</div>
</div>-->
</div>
<!-- needs spacing here-->
<div class="single-course">
<div class="panel-heading">
<!-- perhaps move course_id one position up -->
<input type="hidden" id="course_id" value="35565" />
<div class="row">
<div class="col-md-7">
<h3 class="panel-title"><span>1100</span> <span>Introduction To Engineering Analysis</span></h3>
</div>
<div class="col-md-5">
<div class="btn-group" role="group">
<input type="hidden" id="course_id" value="35565" />
<button type="button" class="btn btn-success">Took</button>
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-danger">Ignore</button>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="row">An integrated development of linear algebra and statics emphasizing engineering applications and also incorporating computer exercises involving matrix techniques and calculations using available software packages.</div>
</div>
<!--
<div class="panel-bottom" style="visibility: hidden;">
<div class="row">
<div class="col-md-11">
<div class="btn-group" id="tag-button" role="group">
<input type="hidden" id="tag_id" value="" />
<button type="button" class="btn btn-default">
<span class = "tagName"></span>
<span class = "tagCount"></span>
</button>
</div>
</div>
</div>
</div>-->
</div>
<!-- needs spacing here-->
<div class="single-course">
<div class="panel-heading">
<!-- perhaps move course_id one position up -->
<input type="hidden" id="course_id" value="36097" />
<div class="row">
<div class="col-md-7">
<h3 class="panel-title"><span>2730</span> <span>Social Psychology</span></h3>
</div>
<div class="col-md-5">
<div class="btn-group" role="group">
<input type="hidden" id="course_id" value="36097" />
<button type="button" class="btn btn-success">Took</button>
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-danger">Ignore</button>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="row">This is a survey course covering theories, methods, and empirical research on personal and situational factors influencing social behavior. Topics covered include social perception, the construction of social reality, decision making, group influences on behavior, and attitudes. This is a communication-intensive course.</div>
</div>
<!--
<div class="panel-bottom" style="visibility: hidden;">
<div class="row">
<div class="col-md-11">
<div class="btn-group" id="tag-button" role="group">
<input type="hidden" id="tag_id" value="" />
<button type="button" class="btn btn-default">
<span class = "tagName"></span>
<span class = "tagCount"></span>
</button>
</div>
</div>
</div>
</div>-->
</div>
<!-- needs spacing here-->
<div class="single-course">
<div class="panel-heading">
<!-- perhaps move course_id one position up -->
<input type="hidden" id="course_id" value="36139" />
<div class="row">
<div class="col-md-7">
<h3 class="panel-title"><span>2200</span> <span>Foundations Of Computer Science</span></h3>
</div>
<div class="col-md-5">
<div class="btn-group" role="group">
<input type="hidden" id="course_id" value="36139" />
<button type="button" class="btn btn-success">Took</button>
<button type="button" class="btn btn-primary">Add</button>
<button type="button" class="btn btn-danger">Ignore</button>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="row">This course introduces important mathematical and theoretical tools for computer science, including topics from set theory, combinatorics, and probability theory, and then proceeds to automata theory, the Turing Machine model of computation, and notions of computational complexity. The course will emphasize formal reasoning and proof techniques.</div>
</div>
<!--
<div class="panel-bottom" style="visibility: hidden;">
<div class="row">
<div class="col-md-11">
<div class="btn-group" id="tag-button" role="group">
<input type="hidden" id="tag_id" value="" />
<button type="button" class="btn btn-default">
<span class = "tagName"></span>
<span class = "tagCount"></span>
</button>
</div>
</div>
</div>
</div>-->
</div>
<!-- needs spacing here-->
<div class="single-course">
<div class="panel-heading">
<!-- perhaps move course_id one position up -->
<input type="hidden" id="course_id" value="36370" />