File tree 4 files changed +0
-20
lines changed
4 files changed +0
-20
lines changed Original file line number Diff line number Diff line change 3
3
< title > Simple ToDo</ title >
4
4
< link rel ="stylesheet " type ="text/css " href ="dom.css ">
5
5
< 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 >
9
6
< script type ="text/javascript " src ="dom.js "> </ script >
10
7
</ head >
11
8
< body >
Original file line number Diff line number Diff line change 3
3
< title > Meme Maker</ title >
4
4
< link rel ="stylesheet " type ="text/css " href ="style.css ">
5
5
<!-- 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 >
7
6
<!-- Connect to the js code -->
8
7
< script type ="text/javascript " src ="meme.js "> </ script >
9
8
Original file line number Diff line number Diff line change @@ -25,22 +25,6 @@ We must get an element before we can do anything to it. Many ways to accomplish
25
25
- Find elements by html tag name, returns array
26
26
- Find elements by class name, returns array
27
27
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
-
44
28
## DOM Manipulation
45
29
### Traversal and Manipulation
46
30
``` javascript
You can’t perform that action at this time.
0 commit comments