You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -216,14 +216,14 @@ URL to which the form data will be submitted.
216
216
Serializes the form into a query string. This method will return a string in the format: `name1=value1&name2=value2`
217
217
218
218
````javascript
219
-
var queryString =$('#myFormId').formSerialize();
219
+
constqueryString=$('#myFormId').formSerialize();
220
220
````
221
221
222
222
### fieldSerialize
223
223
Serializes field elements into a query string. This is handy when you need to serialize only part of a form. This method will return a string in the format: `name1=value1&name2=value2`
224
224
225
225
````javascript
226
-
var queryString =$('#myFormId .specialFields').fieldSerialize();
0 commit comments