Skip to content

Commit e0a6834

Browse files
committed
AJAX -> Ajax
1 parent 03db35c commit e0a6834

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

categories.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<?xml version="1.0"?>
22
<categories>
33
<category name="Ajax" slug="ajax">
4-
<desc><![CDATA[The jQuery library has a full suite of AJAX capabilities. The functions and methods therein allow us to load data from the server without a browser page refresh. ]]></desc>
4+
<desc><![CDATA[The jQuery library has a full suite of Ajax capabilities. The functions and methods therein allow us to load data from the server without a browser page refresh. ]]></desc>
55
<category name="Global Ajax Event Handlers" slug="global-ajax-event-handlers">
6-
<desc><![CDATA[These methods register handlers to be called when certain events, such as initialization or completion, take place for any AJAX request on the page. The global events are fired on each AJAX request if the <code>global</code> property in <a href="/jQuery.ajaxSetup/"><code>jQuery.ajaxSetup()</code></a> is <code>true</code>, which it is by default. <em>Note: Global events are never fired for cross-domain script or JSONP requests, regardless of the value of <code>global</code>.</em>]]></desc>
6+
<desc><![CDATA[These methods register handlers to be called when certain events, such as initialization or completion, take place for any Ajax request on the page. The global events are fired on each Ajax request if the <code>global</code> property in <a href="/jQuery.ajaxSetup/"><code>jQuery.ajaxSetup()</code></a> is <code>true</code>, which it is by default. <em>Note: Global events are never fired for cross-domain script or JSONP requests, regardless of the value of <code>global</code>.</em>]]></desc>
77
</category>
88
<category name="Helper Functions" slug="helper-functions">
9-
<desc><![CDATA[These functions assist with common idioms encountered when performing AJAX tasks.]]></desc>
9+
<desc><![CDATA[These functions assist with common idioms encountered when performing Ajax tasks.]]></desc>
1010
</category>
1111
<category name="Low-Level Interface" slug="low-level-interface">
12-
<desc><![CDATA[These methods can be used to make arbitrary AJAX requests.]]></desc>
12+
<desc><![CDATA[These methods can be used to make arbitrary Ajax requests.]]></desc>
1313
</category>
1414
<category name="Shorthand Methods" slug="shorthand-methods">
15-
<desc><![CDATA[These methods perform the more common types of AJAX requests in less code.]]></desc>
15+
<desc><![CDATA[These methods perform the more common types of Ajax requests in less code.]]></desc>
1616
</category>
1717
</category>
1818
<category name="Attributes" slug="attributes">

entries/jQuery.ajaxSetup.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<longdesc>
1212
<p>For details on the settings available for <code>$.ajaxSetup()</code>, see <code><a href="/jQuery.ajax/">$.ajax()</a></code>. </p>
1313
<p>All subsequent Ajax calls using any function will use the new settings, unless overridden by the individual calls, until the next invocation of <code>$.ajaxSetup()</code>.</p>
14-
<p><strong>Note:</strong> The settings specified here will affect <em>all</em> calls to <code>$.ajax</code> or AJAX-based derivatives such as <code>$.get()</code>. This can cause undesirable behavior since other callers (for example, plugins) may be expecting the normal default settings. For that reason we <em>strongly recommend against using this API</em>. Instead, set the options explicitly in the call or define a simple plugin to do so.</p>
14+
<p><strong>Note:</strong> The settings specified here will affect <em>all</em> calls to <code>$.ajax</code> or Ajax-based derivatives such as <code>$.get()</code>. This can cause undesirable behavior since other callers (for example, plugins) may be expecting the normal default settings. For that reason we <em>strongly recommend against using this API</em>. Instead, set the options explicitly in the call or define a simple plugin to do so.</p>
1515
<p>For example, the following sets a default for the <code>url</code> parameter before pinging the server repeatedly:</p>
1616
<pre><code>
1717
$.ajaxSetup({

pages/Types.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ <h2 id="Callback"> Callback </h2>
542542
<p><br />
543543
</p>
544544
<h2 id="Selector"> Selector </h2>
545-
<p>A selector is used in jQuery to select DOM elements from a DOM document. That document is, in most cases, the DOM document present in all browsers, but can also be an XML document received via AJAX.
545+
<p>A selector is used in jQuery to select DOM elements from a DOM document. That document is, in most cases, the DOM document present in all browsers, but can also be an XML document received via Ajax.
546546
</p>
547547
<p>The selectors are a composition of CSS and custom additions. All selectors available in jQuery are documented on the <a href="/category/selectors/" title="Selectors">Selectors API page</a>.
548548
</p>
@@ -594,7 +594,7 @@ <h2 id="jQuery"> jQuery </h2>
594594
<pre><code data-lang="javascript">$( ".badEntry" ).css({ color: "red" });
595595
</code></pre>
596596
<h2 id="XMLHttpRequest"> XMLHttpRequest </h2>
597-
<p>Some of jQuery's AJAX functions return the native XMLHttpRequest (XHR) object, or pass it as an argument to success/error/complete handlers, so that you can do additional processing or monitoring on the request. Note that AJAX functions only return or pass an XHR object when an XHR object is actually used in the request. For example, JSONP requests and cross-domain GET requests use a script element rather than an XHR object.
597+
<p>Some of jQuery's Ajax functions return the native XMLHttpRequest (XHR) object, or pass it as an argument to success/error/complete handlers, so that you can do additional processing or monitoring on the request. Note that Ajax functions only return or pass an XHR object when an XHR object is actually used in the request. For example, JSONP requests and cross-domain GET requests use a script element rather than an XHR object.
598598
</p>
599599
<p>Although the XHR object is a standard, there are variations in its behavior on different browsers. Refer to the W3C site and browsers' documentation for more information:
600600
</p>

0 commit comments

Comments
 (0)