Skip to content

Commit 467f120

Browse files
author
Juan Soto
committed
Add jquery links, edit README
1 parent 4e01e84 commit 467f120

File tree

3 files changed

+43
-3
lines changed

3 files changed

+43
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
learn-javascript.github.io
22
==========================
3+
4+
A collection of links to help you learn JavaScript.

assets/js/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
(function () {
33

44
// add more files here if needed
5-
var files = ['javascript.json','text-editors.json']
5+
var files = ['javascript.json','text-editors.json', 'jquery.json']
66

77
.forEach(function (filename) {
88
getFile(filename).then(function (data) {
@@ -22,8 +22,8 @@
2222
return reqwest({
2323
url: '/data/' + filename,
2424
type: 'json',
25-
method: 'get'
25+
method: 'get'
2626
})
2727
}
2828

29-
})()
29+
})()

data/jquery.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"title": "jquery",
3+
"description": "",
4+
"lists": [
5+
{
6+
"title": "basics",
7+
"description": "",
8+
"links": [
9+
{
10+
"description": "Code School: Try jQuery",
11+
"type": "interactive course",
12+
"url": "http://try.jquery.com"
13+
}
14+
]
15+
},
16+
{
17+
"title": "in-depth",
18+
"description": "",
19+
"links": [
20+
{
21+
"description": "jQuery Fundamentals",
22+
"type": "website",
23+
"url": "http://jqfundamentals.com"
24+
},
25+
{
26+
"description": "30 Days to learn jQuery (free with account)",
27+
"type": "screencast course",
28+
"url": "http://code.tutsplus.com/courses/30-days-to-learn-jquery"
29+
},
30+
{
31+
"description": "Offical documentation",
32+
"type": "website",
33+
"url": "http://api.jquery.com"
34+
}
35+
]
36+
}
37+
]
38+
}

0 commit comments

Comments
 (0)