Skip to content

Commit 1f79d82

Browse files
RedWolvesscottgonzalez
authored andcommitted
Ajax: Remove opinionated statements
Fixes jquerygh-555 Closes jquerygh-568
1 parent e5d6b21 commit 1f79d82

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

page/ajax/jquery-ajax-methods.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ While jQuery does offer many Ajax-related convenience methods, the core
1010
imperative. We'll review it first, and then touch briefly on the convenience
1111
methods.
1212

13-
I generally use the `$.ajax()` method and do not use convenience methods. As
14-
you'll see, it offers features that the convenience methods do not, and its
15-
syntax is more easily understandable, in my opinion.
13+
It's often considered good practice to use the `$.ajax()` method over the jQuery provided [convenience methods](#convenience-methods). As you'll see, it offers features that the convenience methods do not, and its syntax allows for the ease of readability.
1614

1715
### `$.ajax()`
1816

page/ajax/key-concepts.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,8 @@ For transporting JSON data from another domain.
6363

6464
For transporting data in a custom XML schema.
6565

66-
I am a strong proponent of using the JSON format in most cases, as it provides
67-
the most flexibility. It is especially useful for sending both HTML and data at
68-
the same time.
66+
Consider using the JSON format in most cases, as it provides
67+
the most flexibility. It is especially useful for sending both HTML and data at the same time.
6968

7069
### A is for Asynchronous
7170

0 commit comments

Comments
 (0)