forked from jquery/api.jquery.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeferred.isRejected.xml
19 lines (19 loc) · 1.39 KB
/
deferred.isRejected.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0"?>
<entry name="deferred.isRejected" type="method" return="Boolean" deprecated="1.7" removed="1.8">
<title>deferred.isRejected()</title>
<signature>
<added>1.5</added>
</signature>
<desc> Determine whether a Deferred object has been rejected. </desc>
<longdesc>
<div class="warning">
<p>Note: This API has been removed in jQuery 1.8; please use <a href="/deferred.state/"><code>deferred.state()</code></a> instead.</p>
</div>
<p>Returns <code>true</code> if the Deferred object is in the rejected state, meaning that either <a href="/deferred.reject/"><code>deferred.reject()</code></a> or <a href="/deferred.rejectWith/"><code>deferred.rejectWith()</code></a> has been called for the object and the failCallbacks have been called (or are in the process of being called).</p>
<p>Note that a Deferred object can be in one of three states: pending, resolved, or rejected; use <a href="/deferred.isResolved/"><code>deferred.isResolved()</code></a> to determine whether the Deferred object is in the resolved state. These methods are primarily useful for debugging, for example to determine whether a Deferred has already been resolved even though you are inside code that intended to reject it.</p>
</longdesc>
<category slug="deferred-object"/>
<category slug="version/1.5"/>
<category slug="deprecated/deprecated-1.7"/>
<category slug="removed"/>
</entry>