File tree Expand file tree Collapse file tree 3 files changed +43
-3
lines changed Expand file tree Collapse file tree 3 files changed +43
-3
lines changed Original file line number Diff line number Diff line change 1
1
learn-javascript.github.io
2
2
==========================
3
+
4
+ A collection of links to help you learn JavaScript.
Original file line number Diff line number Diff line change 2
2
( function ( ) {
3
3
4
4
// add more files here if needed
5
- var files = [ 'javascript.json' , 'text-editors.json' ]
5
+ var files = [ 'javascript.json' , 'text-editors.json' , 'jquery.json' ]
6
6
7
7
. forEach ( function ( filename ) {
8
8
getFile ( filename ) . then ( function ( data ) {
22
22
return reqwest ( {
23
23
url : '/data/' + filename ,
24
24
type : 'json' ,
25
- method : 'get'
25
+ method : 'get'
26
26
} )
27
27
}
28
28
29
- } ) ( )
29
+ } ) ( )
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments