Skip to content

Commit f7bad6b

Browse files
committed
Merge pull request #161 from RedWolves/issue-151
Added attribution for jQuery Fundamentals
2 parents 38e0db5 + 32e02dd commit f7bad6b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+165
-4
lines changed

page/ajax/ajax-and-forms.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title : Ajax and Forms
33
level: beginner
4+
source: http://jqfundamentals.com/legacy
5+
attribution:
6+
- jQuery Fundamentals
47
---
58

69
jQuery’s ajax capabilities can be especially useful when dealing with forms. There are several advantages, which can range from serialization, to simple client-side validation (e.g. "Sorry, that username is taken"), to [prefilters](http://api.jquery.com/extending-ajax/#Prefilters) (explained below), and even more!

page/ajax/ajax-events.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title : Ajax Events
33
level: beginner
4+
source: http://jqfundamentals.com/legacy
5+
attribution:
6+
- jQuery Fundamentals
47
---
58
Often, you’ll want to perform an operation whenever an Ajax requests starts or
69
stops, such as showing or hiding a loading indicator. Rather than defining

page/ajax/ajax-excercises.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title : Exercises
33
level: beginner
4+
source: http://jqfundamentals.com/legacy
5+
attribution:
6+
- jQuery Fundamentals
47
---
58
### Load External Content
69

page/ajax/jquery-ajax-methods.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title : jQuery's Ajax-Related Methods
33
level: beginner
4+
source: http://jqfundamentals.com/legacy
5+
attribution:
6+
- jQuery Fundamentals
47
---
58
While jQuery does offer many Ajax-related convenience methods, the core
69
`$.ajax` method is at the heart of all of them, and understanding it is

page/ajax/key-concepts.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title : Key Concepts
33
level: beginner
4+
source: http://jqfundamentals.com/legacy
5+
attribution:
6+
- jQuery Fundamentals
47
---
58
Proper use of Ajax-related jQuery methods requires understanding some key
69
concepts first.

page/ajax/working-with-jsonp.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title : Working with JSONP
33
level: beginner
4+
source: http://jqfundamentals.com/legacy
5+
attribution:
6+
- jQuery Fundamentals
47
---
58
The advent of JSONP — essentially a consensual cross-site scripting hack — has
69
opened the door to powerful mashups of content. Many prominent sites provide

page/code-organization/beware-anonymous-functions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title: Beware Anonymous Functions
33
level: beginner
4+
source: http://jqfundamentals.com/legacy
5+
attribution:
6+
- jQuery Fundamentals
47
---
58

69
Anonymous functions bound everywhere are a pain. They're difficult to debug,

page/code-organization/concepts.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title: Code Organization Concepts
33
level: beginner
4+
source: http://jqfundamentals.com/legacy
5+
attribution:
6+
- jQuery Fundamentals
47
---
58

69
When you move beyond adding simple enhancements to your website with jQuery and

page/code-organization/dont-repeat-yourself.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title: Keep Things DRY
33
level: beginner
4+
attribution:
5+
source: http://jqfundamentals.com/legacy
6+
- jQuery Fundamentals
47
---
58
Don't repeat yourself; if you're repeating yourself, you're doing it wrong.
69

page/effects/built-in-effects.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title : Built-in Effects
33
level: beginner
4+
source: http://jqfundamentals.com/legacy
5+
attribution:
6+
- jQuery Fundamentals
47
---
58
Frequently used effects are built into jQuery as methods:
69

0 commit comments

Comments
 (0)