Skip to content

Commit 51f3979

Browse files
dmethvinmgol
authored andcommitted
Ajax: Add scriptAttrs
Fixes jquery#1091 Closes jquery#1092 Can be landed once jquery/jquery#3028 is closed and we know a specific version for the feature. I've assume 3.4.0 here.
1 parent 4b6b1e9 commit 51f3979

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

entries/jQuery.ajax.xml

+4-1
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,11 @@ $.ajax({
145145
<property default="true" name="processData" type="Boolean">
146146
<desc>By default, data passed in to the <code>data</code> option as an object (technically, anything other than a string) will be processed and transformed into a query string, fitting to the default content-type "application/x-www-form-urlencoded". If you want to send a DOMDocument, or other non-processed data, set this option to <code>false</code>.</desc>
147147
</property>
148+
<property name="scriptAttrs" type="PlainObject" added="3.4.0">
149+
<desc>Defines an object with additional attributes to be used in a "script" or "jsonp" request. The key represents the name of the attribute and the value is the attribute's value. If this object is provided it will force the use of a script-tag transport. For example, this can be used to set <code>nonce</code>, <code>integrity</code>, or <code>crossorigin</code> attributes to satisfy Content Security Policy requirements.</desc>
150+
</property>
148151
<property name="scriptCharset" type="String">
149-
<desc>Only applies when the "script" transport is used (e.g., cross-domain requests with "jsonp" or "script" dataType and "GET" type). Sets the <code>charset</code> attribute on the script tag used in the request. Used when the character set on the local page is not the same as the one on the remote script.</desc>
152+
<desc>Only applies when the "script" transport is used. Sets the <code>charset</code> attribute on the script tag used in the request. Used when the character set on the local page is not the same as the one on the remote script. Alternatively, the <code>charset</code> attribute can be specified in <code>scriptAttrs</code> instead, which will also ensure the use of the "script" transport.</desc>
150153
</property>
151154
<property name="statusCode" type="PlainObject" default="{}" added="1.5">
152155
<desc>

0 commit comments

Comments
 (0)