@@ -129,17 +129,23 @@ trait JQueryStatic extends js.Object {
129
129
* See: <a href="http://api.jquery.com/jQuery.isXMLDoc/">jQuery Docs</a> */
130
130
def isXMLDoc [T ](el : js.Any ): Boolean = js.native
131
131
132
+ /** Create a serialized representation of an array, a plain object, or a jQuery object suitable
133
+ * for use in a URL query string or Ajax request. In case a jQuery object is passed, it should
134
+ * contain input elements with name/value properties. <br/>
135
+ * See: <a href="http://api.jquery.com/jQuery.param/">jQuery Docs</a> */
136
+ def param (obj : js.Array [js.Any ] | js.Object | JQuery , traditional : Boolean = js.native): String = js.native
137
+
132
138
/** Parses a string into an array of DOM nodes. <br/>
133
- * See: <a href="http://api.jquery.com/jQuery.isXMLDoc /">jQuery Docs</a> */
139
+ * See: <a href="http://api.jquery.com/jQuery.parseHTML /">jQuery Docs</a> */
134
140
def parseHTML (data : String , context : Element = js.native, keepScripts : Boolean = js.native): js.Array [Element ] = js.native
135
141
136
142
/** Takes a well-formed JSON string and returns the resulting JavaScript value. <br/>
137
- * See: <a href="http://api.jquery.com/jQuery.isXMLDoc /">jQuery Docs</a> */
143
+ * See: <a href="http://api.jquery.com/jQuery.parseJSON /">jQuery Docs</a> */
138
144
@ deprecated(" Since all the browsers supported by jQuery 3.0 support the native JSON.parse() method, we are deprecating jQuery.parseJSON()." , " 1.1.0" )
139
145
def parseJSON (json : String ): js.Any = js.native
140
146
141
147
/** Parses a string into an XML document. <br/>
142
- * See: <a href="http://api.jquery.com/jQuery.isXMLDoc /">jQuery Docs</a> */
148
+ * See: <a href="http://api.jquery.com/jQuery.parseXML /">jQuery Docs</a> */
143
149
def parseXML (xml : String ): js.Dynamic = js.native
144
150
145
151
/** Load data from the server using a HTTP POST request. <br/>
0 commit comments