We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0a526e commit a83d4a1Copy full SHA for a83d4a1
jquery.form.js
@@ -1,6 +1,6 @@
1
/*!
2
* jQuery Form Plugin
3
- * version: 3.36.0-2013.06.16
+ * version: 3.37.0-2013.07.11
4
* @requires jQuery v1.5 or later
5
* Copyright (c) 2013 M. Alsup
6
* Examples and documentation at: http://malsup.com/jquery/form/
@@ -89,6 +89,9 @@ $.fn.ajaxSubmit = function(options) {
89
if (typeof options == 'function') {
90
options = { success: options };
91
}
92
+ else if ( options === undefined ) {
93
+ options = {};
94
+ }
95
96
method = options.type || this.attr2('method');
97
action = options.url || this.attr2('action');
0 commit comments