Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merged with master
  • Loading branch information
Acho Arnold committed Jun 3, 2015
commit 36d470cb557b1a0a9f5a47ff74b322cb9b7418c1
1 change: 1 addition & 0 deletions page/ajax/ajax-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"attribution": [ "jQuery Fundamentals" ]
}</script>


Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you remove the addition of a new blank line in here? They're unrelated changes and there being 2 lines would be inconsistent.

Often, you'll want to perform an operation whenever an Ajax requests starts or stops, such as showing or hiding a loading indicator. Rather than defining this behavior inside every Ajax request, you can bind Ajax events to elements just like you'd bind other events. For a complete list of Ajax events, visit [Ajax Events documentation on learn.jquery.com](http://api.jquery.com/Ajax_Events/).

```
Expand Down
2 changes: 1 addition & 1 deletion page/events/history-of-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ It is possible to use `.bind()` and attach a handler to every element.
});​​​​​​​​​​​​​​​​​​​​​
```

As discussed in the [event delegation](/events/event-delegation/) article, this is not optimal.
As discussed in the [event delegation](/event/event-delegation/) article, this is not optimal.

### liveQuery
*liveQuery* was a popular jQuery plugin that allowed for the creation of events which would be triggered for elements that existed now or in the future. This plugin did not use event delegation and used expensive CPU processing to poll the DOM for changes every 20ms and fire events accordingly.
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.