├── images
├── dom.png
├── meetup.png
├── console.png
├── results.png
├── foursquare.png
├── meetup_open.png
├── client-server.png
├── gdi_logo_badge.png
├── meetup_console.png
└── meetup_results.png
├── .gitmodules
├── class3
├── exercise2
│ ├── style.css
│ ├── index.html
│ └── javascript.js
├── exercise3
│ ├── style.css
│ ├── index.html
│ └── javascript.js
└── exercise1
│ ├── index.html
│ └── javascript.js
├── class1
├── exercise1
│ ├── index.html
│ └── javascript.js
├── exercise2
│ ├── index.html
│ └── javascript.js
└── exercise3
│ ├── index.html
│ └── javascript.js
├── class4
├── exercise1
│ ├── style.css
│ ├── index.html
│ └── javascript.js
├── exercise2
│ ├── style.css
│ ├── index.html
│ └── javascript.js
└── exercise3
│ ├── style.css
│ ├── index.html
│ └── javascript.js
├── class2
├── exercise1
│ ├── index.html
│ └── javascript.js
├── exercise2
│ ├── index.html
│ └── javascript.js
└── exercise3
│ ├── index.html
│ └── javascript.js
├── README.md
├── class4.html
├── class3.html
├── class2.html
└── class1.html
/images/dom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gdi-curriculum-review/gdi-jquery-intro/HEAD/images/dom.png
--------------------------------------------------------------------------------
/images/meetup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gdi-curriculum-review/gdi-jquery-intro/HEAD/images/meetup.png
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "reveal"]
2 | path = reveal
3 | url = git://github.com/girldevelopit/reveal.js.git
4 |
--------------------------------------------------------------------------------
/images/console.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gdi-curriculum-review/gdi-jquery-intro/HEAD/images/console.png
--------------------------------------------------------------------------------
/images/results.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gdi-curriculum-review/gdi-jquery-intro/HEAD/images/results.png
--------------------------------------------------------------------------------
/class3/exercise2/style.css:
--------------------------------------------------------------------------------
1 | .box{
2 | width: 200px;
3 | height: 100px;
4 | border: 1px solid #ccc;
5 | }
--------------------------------------------------------------------------------
/images/foursquare.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gdi-curriculum-review/gdi-jquery-intro/HEAD/images/foursquare.png
--------------------------------------------------------------------------------
/images/meetup_open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gdi-curriculum-review/gdi-jquery-intro/HEAD/images/meetup_open.png
--------------------------------------------------------------------------------
/images/client-server.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gdi-curriculum-review/gdi-jquery-intro/HEAD/images/client-server.png
--------------------------------------------------------------------------------
/images/gdi_logo_badge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gdi-curriculum-review/gdi-jquery-intro/HEAD/images/gdi_logo_badge.png
--------------------------------------------------------------------------------
/images/meetup_console.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gdi-curriculum-review/gdi-jquery-intro/HEAD/images/meetup_console.png
--------------------------------------------------------------------------------
/images/meetup_results.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gdi-curriculum-review/gdi-jquery-intro/HEAD/images/meetup_results.png
--------------------------------------------------------------------------------
/class1/exercise1/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | My Site!
4 |
5 |
6 |
7 | My Site!
8 |
9 |
--------------------------------------------------------------------------------
/class1/exercise2/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | My Site!
4 |
5 |
6 |
7 | My Site!
8 |
9 |
--------------------------------------------------------------------------------
/class3/exercise3/style.css:
--------------------------------------------------------------------------------
1 | .box{
2 | width: 200px;
3 | height: 100px;
4 | border: 1px solid #ccc;
5 | }
6 |
7 | input{
8 | width: 200px;
9 | padding: 5px;
10 | margin: 5px;
11 | }
--------------------------------------------------------------------------------
/class1/exercise1/javascript.js:
--------------------------------------------------------------------------------
1 | var age = 26;
2 | var oldAge = 96;
3 | var perDay = 2;
4 |
5 | var days = (oldAge - age) * 365;
6 | var total = perDay * days;
7 | alert("You will need " + total + " to last you until the ripe old age of " + oldAge);
8 |
--------------------------------------------------------------------------------
/class1/exercise3/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | My Site!
4 |
5 |
6 |
7 | My Site!
8 | Calculate life time supply
9 |
10 |
--------------------------------------------------------------------------------
/class4/exercise1/style.css:
--------------------------------------------------------------------------------
1 | .box{
2 | width: 200px;
3 | height: 100px;
4 | border: 1px solid #ccc;
5 | }
6 |
7 | input{
8 | width: 200px;
9 | padding: 5px;
10 | margin: 5px;
11 | }
12 | .event{
13 | margin:5px;
14 | padding:5px;
15 | border: 1px solid #ccc;
16 | background-color: #ddd;
17 | }
--------------------------------------------------------------------------------
/class4/exercise2/style.css:
--------------------------------------------------------------------------------
1 | .box{
2 | width: 200px;
3 | height: 100px;
4 | border: 1px solid #ccc;
5 | }
6 |
7 | input{
8 | width: 200px;
9 | padding: 5px;
10 | margin: 5px;
11 | }
12 | .event{
13 | margin:5px;
14 | padding:5px;
15 | border: 1px solid #ccc;
16 | background-color: #ddd;
17 | }
--------------------------------------------------------------------------------
/class4/exercise3/style.css:
--------------------------------------------------------------------------------
1 | .box{
2 | width: 200px;
3 | height: 100px;
4 | border: 1px solid #ccc;
5 | }
6 |
7 | input{
8 | width: 200px;
9 | padding: 5px;
10 | margin: 5px;
11 | }
12 | .event{
13 | margin:5px;
14 | padding:5px;
15 | border: 1px solid #ccc;
16 | background-color: #ddd;
17 | }
--------------------------------------------------------------------------------
/class2/exercise1/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | My Site!
4 |
5 |
6 |
7 | My Site!
8 | Calculate life time supply
9 | See my favorite things
10 |
11 |
--------------------------------------------------------------------------------
/class2/exercise2/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | My Site!
4 |
5 |
6 |
7 | My Site!
8 | Calculate life time supply
9 | See my favorite things
10 | My friends
11 |
12 |
--------------------------------------------------------------------------------
/class1/exercise2/javascript.js:
--------------------------------------------------------------------------------
1 | var age = 26;
2 | var oldAge = 96;
3 | var perDay = 2;
4 |
5 | var days = (oldAge - age) * 356;
6 | var total = perDay * days;
7 | if(total > 40000){
8 | alert("You will need " + total + " to last you until the ripe old age of " + oldAge + ". Wow! That's a lot!");
9 | }else{
10 | alert("You will need " + total + " to last you until the ripe old age of " + oldAge + ". You seem pretty reasonable");
11 | }
--------------------------------------------------------------------------------
/class1/exercise3/javascript.js:
--------------------------------------------------------------------------------
1 | function calculate(){
2 | var age = 26;
3 | var oldAge = 96;
4 | var perDay = 2;
5 |
6 | var days = (oldAge - age) * 356;
7 | var total = perDay * days;
8 | if(total > 40000){
9 | alert("You will need " + total + " to last you until the ripe old age of " + oldAge + ". Wow! That's a lot!");
10 | }else{
11 | alert("You will need " + total + " to last you until the ripe old age of " + oldAge + ". You seem pretty reasonable");
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/class2/exercise3/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | My Site!
4 |
5 |
6 |
7 | My Site!
8 | Calculate life time supply
9 |
10 |
11 |
12 | See my favorite things
13 |
14 |
15 |
16 | My friends
17 |
18 |
--------------------------------------------------------------------------------
/class3/exercise1/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | My Site!
4 |
5 |
6 |
7 |
8 | My Site!
9 | Calculate life time supply
10 |
11 |
12 |
13 | See my favorite things
14 |
15 |
16 |
17 | My friends
18 |
19 |
--------------------------------------------------------------------------------
/class3/exercise2/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | My Site!
4 |
5 |
6 |
7 |
8 |
9 | My Site!
10 |
11 |
12 |
13 |
14 | Calculate life time supply
15 |
16 |
17 |
18 | See my favorite things
19 |
20 |
21 |
22 | My friends
23 |
24 |
25 |
--------------------------------------------------------------------------------
/class2/exercise1/javascript.js:
--------------------------------------------------------------------------------
1 | function calculate(){
2 | var age = 26;
3 | var oldAge = 96;
4 | var perDay = 2;
5 |
6 | var days = (oldAge - age) * 356;
7 | var total = perDay * days;
8 | if(total > 40000){
9 | alert("You will need " + total + " to last you until the ripe old age of " + oldAge + ". Wow! That's a lot!");
10 | }else{
11 | alert("You will need " + total + " to last you until the ripe old age of " + oldAge + ". You seem pretty reasonable");
12 | }
13 | }
14 |
15 | function favoriteThings(){
16 | var favoriteThings = ['Rabbits', 'Orange', 'Yogurt', 'Brussel Sprouts', 'Otters'];
17 | var result = 'My favorite things are: ';
18 | for (var i = 0; i
2 |
3 | My Site!
4 |
5 |
6 |
7 |
8 |
9 | My Site!
10 |
11 |
12 |
13 |
14 |
20 |
21 |
22 |
23 |
24 |
My favorite things:
25 |
26 |
30 |
31 |
36 |
37 |