Skip to content

Commit b06ec8c

Browse files
committed
week 5 for f19
1 parent df832ab commit b06ec8c

File tree

4 files changed

+0
-20
lines changed

4 files changed

+0
-20
lines changed

week5-dom/.w5_notes.md.swp

16 KB
Binary file not shown.

week5-dom/dom/dom.html

-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
<title>Simple ToDo</title>
44
<link rel="stylesheet" type="text/css" href="dom.css">
55
<link href='https://fonts.googleapis.com/css?family=Muli' rel='stylesheet' type='text/css'>
6-
7-
<!-- Have to have this! Grabs jquery from the web -->
8-
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
96
<script type="text/javascript" src="dom.js"></script>
107
</head>
118
<body>

week5-dom/meme-generator/meme.html

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<title>Meme Maker</title>
44
<link rel="stylesheet" type="text/css" href="style.css">
55
<!-- add jquery, must be done for jquery to work! -->
6-
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
76
<!-- Connect to the js code -->
87
<script type="text/javascript" src="meme.js"></script>
98

week5-dom/w5_notes.md

-16
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,6 @@ We must get an element before we can do anything to it. Many ways to accomplish
2525
- Find elements by html tag name, returns array
2626
- Find elements by class name, returns array
2727

28-
### Introduction to jQuery
29-
- jQuery is a Javascript library
30-
- Goal is to make DOM traversal, manipulation, and event handling easier.
31-
32-
### when and how
33-
When you might need jQuery
34-
- For small projects where perfomance is not a big issue
35-
- Simple projects with a tight deadline
36-
- When you use a front-end library that has jQuery as a depedency.
37-
38-
When you might not need jQuery
39-
- Acquiring an advanced understanding of JS
40-
- Working on complex web applications
41-
- Building you own library or framework
42-
-Server side applications with Node.js
43-
4428
## DOM Manipulation
4529
### Traversal and Manipulation
4630
```javascript

0 commit comments

Comments
 (0)