ajaxForm.js 52 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520
  1. /*!
  2. * jQuery Form Plugin
  3. * version: 4.2.1
  4. * Requires jQuery v1.7 or later
  5. * Copyright 2017 Kevin Morris
  6. * Copyright 2006 M. Alsup
  7. * Project repository: https://github.com/jquery-form/form
  8. * Dual licensed under the MIT and LGPLv3 licenses.
  9. * https://github.com/jquery-form/form#license
  10. */
  11. /* global ActiveXObject */
  12. /* eslint-disable */
  13. (function (factory) {
  14. if (typeof define === 'function' && define.amd) {
  15. // AMD. Register as an anonymous module.
  16. define(['jquery'], factory);
  17. } else if (typeof module === 'object' && module.exports) {
  18. // Node/CommonJS
  19. module.exports = function( root, jQuery ) {
  20. if (typeof jQuery === 'undefined') {
  21. // require('jQuery') returns a factory that requires window to build a jQuery instance, we normalize how we use modules
  22. // that require this pattern but the window provided is a noop if it's defined (how jquery works)
  23. if (typeof window !== 'undefined') {
  24. jQuery = require('jquery');
  25. }
  26. else {
  27. jQuery = require('jquery')(root);
  28. }
  29. }
  30. factory(jQuery);
  31. return jQuery;
  32. };
  33. } else {
  34. // Browser globals
  35. factory(jQuery);
  36. }
  37. }(function ($) {
  38. /* eslint-enable */
  39. 'use strict';
  40. /*
  41. Usage Note:
  42. -----------
  43. Do not use both ajaxSubmit and ajaxForm on the same form. These
  44. functions are mutually exclusive. Use ajaxSubmit if you want
  45. to bind your own submit handler to the form. For example,
  46. $(document).ready(function() {
  47. $('#myForm').on('submit', function(e) {
  48. e.preventDefault(); // <-- important
  49. $(this).ajaxSubmit({
  50. target: '#output'
  51. });
  52. });
  53. });
  54. Use ajaxForm when you want the plugin to manage all the event binding
  55. for you. For example,
  56. $(document).ready(function() {
  57. $('#myForm').ajaxForm({
  58. target: '#output'
  59. });
  60. });
  61. You can also use ajaxForm with delegation (requires jQuery v1.7+), so the
  62. form does not have to exist when you invoke ajaxForm:
  63. $('#myForm').ajaxForm({
  64. delegation: true,
  65. target: '#output'
  66. });
  67. When using ajaxForm, the ajaxSubmit function will be invoked for you
  68. at the appropriate time.
  69. */
  70. var rCRLF = /\r?\n/g;
  71. /**
  72. * Feature detection
  73. */
  74. var feature = {};
  75. feature.fileapi = $('<input type="file">').get(0).files !== undefined;
  76. feature.formdata = (typeof window.FormData !== 'undefined');
  77. var hasProp = !!$.fn.prop;
  78. // attr2 uses prop when it can but checks the return type for
  79. // an expected string. This accounts for the case where a form
  80. // contains inputs with names like "action" or "method"; in those
  81. // cases "prop" returns the element
  82. $.fn.attr2 = function() {
  83. if (!hasProp) {
  84. return this.attr.apply(this, arguments);
  85. }
  86. var val = this.prop.apply(this, arguments);
  87. if ((val && val.jquery) || typeof val === 'string') {
  88. return val;
  89. }
  90. return this.attr.apply(this, arguments);
  91. };
  92. /**
  93. * ajaxSubmit() provides a mechanism for immediately submitting
  94. * an HTML form using AJAX.
  95. *
  96. * @param {object|string} options jquery.form.js parameters or custom url for submission
  97. * @param {object} data extraData
  98. * @param {string} dataType ajax dataType
  99. * @param {function} onSuccess ajax success callback function
  100. */
  101. $.fn.ajaxSubmit = function(options, data, dataType, onSuccess) {
  102. // fast fail if nothing selected (http://dev.jquery.com/ticket/2752)
  103. if (!this.length) {
  104. log('ajaxSubmit: skipping submit process - no element selected');
  105. return this;
  106. }
  107. /* eslint consistent-this: ["error", "$form"] */
  108. var method, action, url, $form = this;
  109. if (typeof options === 'function') {
  110. options = {success: options};
  111. } else if (typeof options === 'string' || (options === false && arguments.length > 0)) {
  112. options = {
  113. 'url' : options,
  114. 'data' : data,
  115. 'dataType' : dataType
  116. };
  117. if (typeof onSuccess === 'function') {
  118. options.success = onSuccess;
  119. }
  120. } else if (typeof options === 'undefined') {
  121. options = {};
  122. }
  123. method = options.method || options.type || this.attr2('method');
  124. action = options.url || this.attr2('action');
  125. url = (typeof action === 'string') ? $.trim(action) : '';
  126. url = url || window.location.href || '';
  127. if (url) {
  128. // clean url (don't include hash vaue)
  129. url = (url.match(/^([^#]+)/) || [])[1];
  130. }
  131. options = $.extend(true, {
  132. url : url,
  133. success : $.ajaxSettings.success,
  134. type : method || $.ajaxSettings.type,
  135. iframeSrc : /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank' // eslint-disable-line no-script-url
  136. }, options);
  137. // hook for manipulating the form data before it is extracted;
  138. // convenient for use with rich editors like tinyMCE or FCKEditor
  139. var veto = {};
  140. this.trigger('form-pre-serialize', [this, options, veto]);
  141. if (veto.veto) {
  142. log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');
  143. return this;
  144. }
  145. // provide opportunity to alter form data before it is serialized
  146. if (options.beforeSerialize && options.beforeSerialize(this, options) === false) {
  147. log('ajaxSubmit: submit aborted via beforeSerialize callback');
  148. return this;
  149. }
  150. var traditional = options.traditional;
  151. if (typeof traditional === 'undefined') {
  152. traditional = $.ajaxSettings.traditional;
  153. }
  154. var elements = [];
  155. var qx, a = this.formToArray(options.semantic, elements, options.filtering);
  156. if (options.data) {
  157. var optionsData = $.isFunction(options.data) ? options.data(a) : options.data;
  158. options.extraData = optionsData;
  159. qx = $.param(optionsData, traditional);
  160. }
  161. // give pre-submit callback an opportunity to abort the submit
  162. if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {
  163. log('ajaxSubmit: submit aborted via beforeSubmit callback');
  164. return this;
  165. }
  166. // fire vetoable 'validate' event
  167. this.trigger('form-submit-validate', [a, this, options, veto]);
  168. if (veto.veto) {
  169. log('ajaxSubmit: submit vetoed via form-submit-validate trigger');
  170. return this;
  171. }
  172. var q = $.param(a, traditional);
  173. if (qx) {
  174. q = (q ? (q + '&' + qx) : qx);
  175. }
  176. if (options.type.toUpperCase() === 'GET') {
  177. options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;
  178. options.data = null; // data is null for 'get'
  179. } else {
  180. options.data = q; // data is the query string for 'post'
  181. }
  182. var callbacks = [];
  183. if (options.resetForm) {
  184. callbacks.push(function() {
  185. $form.resetForm();
  186. });
  187. }
  188. if (options.clearForm) {
  189. callbacks.push(function() {
  190. $form.clearForm(options.includeHidden);
  191. });
  192. }
  193. // perform a load on the target only if dataType is not provided
  194. if (!options.dataType && options.target) {
  195. var oldSuccess = options.success || function(){};
  196. callbacks.push(function(data, textStatus, jqXHR) {
  197. var successArguments = arguments,
  198. fn = options.replaceTarget ? 'replaceWith' : 'html';
  199. $(options.target)[fn](data).each(function(){
  200. oldSuccess.apply(this, successArguments);
  201. });
  202. });
  203. } else if (options.success) {
  204. if ($.isArray(options.success)) {
  205. $.merge(callbacks, options.success);
  206. } else {
  207. callbacks.push(options.success);
  208. }
  209. }
  210. options.success = function(data, status, xhr) { // jQuery 1.4+ passes xhr as 3rd arg
  211. var context = options.context || this; // jQuery 1.4+ supports scope context
  212. for (var i = 0, max = callbacks.length; i < max; i++) {
  213. callbacks[i].apply(context, [data, status, xhr || $form, $form]);
  214. }
  215. };
  216. if (options.error) {
  217. var oldError = options.error;
  218. options.error = function(xhr, status, error) {
  219. var context = options.context || this;
  220. oldError.apply(context, [xhr, status, error, $form]);
  221. };
  222. }
  223. if (options.complete) {
  224. var oldComplete = options.complete;
  225. options.complete = function(xhr, status) {
  226. var context = options.context || this;
  227. oldComplete.apply(context, [xhr, status, $form]);
  228. };
  229. }
  230. // are there files to upload?
  231. // [value] (issue #113), also see comment:
  232. // https://github.com/malsup/form/commit/588306aedba1de01388032d5f42a60159eea9228#commitcomment-2180219
  233. var fileInputs = $('input[type=file]:enabled', this).filter(function() {
  234. return $(this).val() !== '';
  235. });
  236. var hasFileInputs = fileInputs.length > 0;
  237. var mp = 'multipart/form-data';
  238. var multipart = ($form.attr('enctype') === mp || $form.attr('encoding') === mp);
  239. var fileAPI = feature.fileapi && feature.formdata;
  240. log('fileAPI :' + fileAPI);
  241. var shouldUseFrame = (hasFileInputs || multipart) && !fileAPI;
  242. var jqxhr;
  243. // options.iframe allows user to force iframe mode
  244. // 06-NOV-09: now defaulting to iframe mode if file input is detected
  245. if (options.iframe !== false && (options.iframe || shouldUseFrame)) {
  246. // hack to fix Safari hang (thanks to Tim Molendijk for this)
  247. // see: http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d
  248. if (options.closeKeepAlive) {
  249. $.get(options.closeKeepAlive, function() {
  250. jqxhr = fileUploadIframe(a);
  251. });
  252. } else {
  253. jqxhr = fileUploadIframe(a);
  254. }
  255. } else if ((hasFileInputs || multipart) && fileAPI) {
  256. jqxhr = fileUploadXhr(a);
  257. } else {
  258. jqxhr = $.ajax(options);
  259. }
  260. $form.removeData('jqxhr').data('jqxhr', jqxhr);
  261. // clear element array
  262. for (var k = 0; k < elements.length; k++) {
  263. elements[k] = null;
  264. }
  265. // fire 'notify' event
  266. this.trigger('form-submit-notify', [this, options]);
  267. return this;
  268. // utility fn for deep serialization
  269. function deepSerialize(extraData) {
  270. var serialized = $.param(extraData, options.traditional).split('&');
  271. var len = serialized.length;
  272. var result = [];
  273. var i, part;
  274. for (i = 0; i < len; i++) {
  275. // #252; undo param space replacement
  276. serialized[i] = serialized[i].replace(/\+/g, ' ');
  277. part = serialized[i].split('=');
  278. // #278; use array instead of object storage, favoring array serializations
  279. result.push([decodeURIComponent(part[0]), decodeURIComponent(part[1])]);
  280. }
  281. return result;
  282. }
  283. // XMLHttpRequest Level 2 file uploads (big hat tip to francois2metz)
  284. function fileUploadXhr(a) {
  285. var formdata = new FormData();
  286. for (var i = 0; i < a.length; i++) {
  287. formdata.append(a[i].name, a[i].value);
  288. }
  289. if (options.extraData) {
  290. var serializedData = deepSerialize(options.extraData);
  291. for (i = 0; i < serializedData.length; i++) {
  292. if (serializedData[i]) {
  293. formdata.append(serializedData[i][0], serializedData[i][1]);
  294. }
  295. }
  296. }
  297. options.data = null;
  298. var s = $.extend(true, {}, $.ajaxSettings, options, {
  299. contentType : false,
  300. processData : false,
  301. cache : false,
  302. type : method || 'POST'
  303. });
  304. if (options.uploadProgress) {
  305. // workaround because jqXHR does not expose upload property
  306. s.xhr = function() {
  307. var xhr = $.ajaxSettings.xhr();
  308. if (xhr.upload) {
  309. xhr.upload.addEventListener('progress', function(event) {
  310. var percent = 0;
  311. var position = event.loaded || event.position; /* event.position is deprecated */
  312. var total = event.total;
  313. if (event.lengthComputable) {
  314. percent = Math.ceil(position / total * 100);
  315. }
  316. options.uploadProgress(event, position, total, percent);
  317. }, false);
  318. }
  319. return xhr;
  320. };
  321. }
  322. s.data = null;
  323. var beforeSend = s.beforeSend;
  324. s.beforeSend = function(xhr, o) {
  325. // Send FormData() provided by user
  326. if (options.formData) {
  327. o.data = options.formData;
  328. } else {
  329. o.data = formdata;
  330. }
  331. if (beforeSend) {
  332. beforeSend.call(this, xhr, o);
  333. }
  334. };
  335. return $.ajax(s);
  336. }
  337. // private function for handling file uploads (hat tip to YAHOO!)
  338. function fileUploadIframe(a) {
  339. var form = $form[0], el, i, s, g, id, $io, io, xhr, sub, n, timedOut, timeoutHandle;
  340. var deferred = $.Deferred();
  341. // #341
  342. deferred.abort = function(status) {
  343. xhr.abort(status);
  344. };
  345. if (a) {
  346. // ensure that every serialized input is still enabled
  347. for (i = 0; i < elements.length; i++) {
  348. el = $(elements[i]);
  349. if (hasProp) {
  350. el.prop('disabled', false);
  351. } else {
  352. el.removeAttr('disabled');
  353. }
  354. }
  355. }
  356. s = $.extend(true, {}, $.ajaxSettings, options);
  357. s.context = s.context || s;
  358. id = 'jqFormIO' + new Date().getTime();
  359. var ownerDocument = form.ownerDocument;
  360. var $body = $form.closest('body');
  361. if (s.iframeTarget) {
  362. $io = $(s.iframeTarget, ownerDocument);
  363. n = $io.attr2('name');
  364. if (!n) {
  365. $io.attr2('name', id);
  366. } else {
  367. id = n;
  368. }
  369. } else {
  370. $io = $('<iframe name="' + id + '" src="' + s.iframeSrc + '" />', ownerDocument);
  371. $io.css({position: 'absolute', top: '-1000px', left: '-1000px'});
  372. }
  373. io = $io[0];
  374. xhr = { // mock object
  375. aborted : 0,
  376. responseText : null,
  377. responseXML : null,
  378. status : 0,
  379. statusText : 'n/a',
  380. getAllResponseHeaders : function() {},
  381. getResponseHeader : function() {},
  382. setRequestHeader : function() {},
  383. abort : function(status) {
  384. var e = (status === 'timeout' ? 'timeout' : 'aborted');
  385. log('aborting upload... ' + e);
  386. this.aborted = 1;
  387. try { // #214, #257
  388. if (io.contentWindow.document.execCommand) {
  389. io.contentWindow.document.execCommand('Stop');
  390. }
  391. } catch (ignore) {}
  392. $io.attr('src', s.iframeSrc); // abort op in progress
  393. xhr.error = e;
  394. if (s.error) {
  395. s.error.call(s.context, xhr, e, status);
  396. }
  397. if (g) {
  398. $.event.trigger('ajaxError', [xhr, s, e]);
  399. }
  400. if (s.complete) {
  401. s.complete.call(s.context, xhr, e);
  402. }
  403. }
  404. };
  405. g = s.global;
  406. // trigger ajax global events so that activity/block indicators work like normal
  407. if (g && $.active++ === 0) {
  408. $.event.trigger('ajaxStart');
  409. }
  410. if (g) {
  411. $.event.trigger('ajaxSend', [xhr, s]);
  412. }
  413. if (s.beforeSend && s.beforeSend.call(s.context, xhr, s) === false) {
  414. if (s.global) {
  415. $.active--;
  416. }
  417. deferred.reject();
  418. return deferred;
  419. }
  420. if (xhr.aborted) {
  421. deferred.reject();
  422. return deferred;
  423. }
  424. // add submitting element to data if we know it
  425. sub = form.clk;
  426. if (sub) {
  427. n = sub.name;
  428. if (n && !sub.disabled) {
  429. s.extraData = s.extraData || {};
  430. s.extraData[n] = sub.value;
  431. if (sub.type === 'image') {
  432. s.extraData[n + '.x'] = form.clk_x;
  433. s.extraData[n + '.y'] = form.clk_y;
  434. }
  435. }
  436. }
  437. var CLIENT_TIMEOUT_ABORT = 1;
  438. var SERVER_ABORT = 2;
  439. function getDoc(frame) {
  440. /* it looks like contentWindow or contentDocument do not
  441. * carry the protocol property in ie8, when running under ssl
  442. * frame.document is the only valid response document, since
  443. * the protocol is know but not on the other two objects. strange?
  444. * "Same origin policy" http://en.wikipedia.org/wiki/Same_origin_policy
  445. */
  446. var doc = null;
  447. // IE8 cascading access check
  448. try {
  449. if (frame.contentWindow) {
  450. doc = frame.contentWindow.document;
  451. }
  452. } catch (err) {
  453. // IE8 access denied under ssl & missing protocol
  454. log('cannot get iframe.contentWindow document: ' + err);
  455. }
  456. if (doc) { // successful getting content
  457. return doc;
  458. }
  459. try { // simply checking may throw in ie8 under ssl or mismatched protocol
  460. doc = frame.contentDocument ? frame.contentDocument : frame.document;
  461. } catch (err) {
  462. // last attempt
  463. log('cannot get iframe.contentDocument: ' + err);
  464. doc = frame.document;
  465. }
  466. return doc;
  467. }
  468. // Rails CSRF hack (thanks to Yvan Barthelemy)
  469. var csrf_token = $('meta[name=csrf-token]').attr('content');
  470. var csrf_param = $('meta[name=csrf-param]').attr('content');
  471. if (csrf_param && csrf_token) {
  472. s.extraData = s.extraData || {};
  473. s.extraData[csrf_param] = csrf_token;
  474. }
  475. // take a breath so that pending repaints get some cpu time before the upload starts
  476. function doSubmit() {
  477. // make sure form attrs are set
  478. var t = $form.attr2('target'),
  479. a = $form.attr2('action'),
  480. mp = 'multipart/form-data',
  481. et = $form.attr('enctype') || $form.attr('encoding') || mp;
  482. // update form attrs in IE friendly way
  483. form.setAttribute('target', id);
  484. if (!method || /post/i.test(method)) {
  485. form.setAttribute('method', 'POST');
  486. }
  487. if (a !== s.url) {
  488. form.setAttribute('action', s.url);
  489. }
  490. // ie borks in some cases when setting encoding
  491. if (!s.skipEncodingOverride && (!method || /post/i.test(method))) {
  492. $form.attr({
  493. encoding : 'multipart/form-data',
  494. enctype : 'multipart/form-data'
  495. });
  496. }
  497. // support timout
  498. if (s.timeout) {
  499. timeoutHandle = setTimeout(function() {
  500. timedOut = true; cb(CLIENT_TIMEOUT_ABORT);
  501. }, s.timeout);
  502. }
  503. // look for server aborts
  504. function checkState() {
  505. try {
  506. var state = getDoc(io).readyState;
  507. log('state = ' + state);
  508. if (state && state.toLowerCase() === 'uninitialized') {
  509. setTimeout(checkState, 50);
  510. }
  511. } catch (e) {
  512. log('Server abort: ', e, ' (', e.name, ')');
  513. cb(SERVER_ABORT); // eslint-disable-line callback-return
  514. if (timeoutHandle) {
  515. clearTimeout(timeoutHandle);
  516. }
  517. timeoutHandle = undefined;
  518. }
  519. }
  520. // add "extra" data to form if provided in options
  521. var extraInputs = [];
  522. try {
  523. if (s.extraData) {
  524. for (var n in s.extraData) {
  525. if (s.extraData.hasOwnProperty(n)) {
  526. // if using the $.param format that allows for multiple values with the same name
  527. if ($.isPlainObject(s.extraData[n]) && s.extraData[n].hasOwnProperty('name') && s.extraData[n].hasOwnProperty('value')) {
  528. extraInputs.push(
  529. $('<input type="hidden" name="' + s.extraData[n].name + '">', ownerDocument).val(s.extraData[n].value)
  530. .appendTo(form)[0]);
  531. } else {
  532. extraInputs.push(
  533. $('<input type="hidden" name="' + n + '">', ownerDocument).val(s.extraData[n])
  534. .appendTo(form)[0]);
  535. }
  536. }
  537. }
  538. }
  539. if (!s.iframeTarget) {
  540. // add iframe to doc and submit the form
  541. $io.appendTo($body);
  542. }
  543. if (io.attachEvent) {
  544. io.attachEvent('onload', cb);
  545. } else {
  546. io.addEventListener('load', cb, false);
  547. }
  548. setTimeout(checkState, 15);
  549. try {
  550. form.submit();
  551. } catch (err) {
  552. // just in case form has element with name/id of 'submit'
  553. var submitFn = document.createElement('form').submit;
  554. submitFn.apply(form);
  555. }
  556. } finally {
  557. // reset attrs and remove "extra" input elements
  558. form.setAttribute('action', a);
  559. form.setAttribute('enctype', et); // #380
  560. if (t) {
  561. form.setAttribute('target', t);
  562. } else {
  563. $form.removeAttr('target');
  564. }
  565. $(extraInputs).remove();
  566. }
  567. }
  568. if (s.forceSync) {
  569. doSubmit();
  570. } else {
  571. setTimeout(doSubmit, 10); // this lets dom updates render
  572. }
  573. var data, doc, domCheckCount = 50, callbackProcessed;
  574. function cb(e) {
  575. if (xhr.aborted || callbackProcessed) {
  576. return;
  577. }
  578. doc = getDoc(io);
  579. if (!doc) {
  580. log('cannot access response document');
  581. e = SERVER_ABORT;
  582. }
  583. if (e === CLIENT_TIMEOUT_ABORT && xhr) {
  584. xhr.abort('timeout');
  585. deferred.reject(xhr, 'timeout');
  586. return;
  587. } else if (e === SERVER_ABORT && xhr) {
  588. xhr.abort('server abort');
  589. deferred.reject(xhr, 'error', 'server abort');
  590. return;
  591. }
  592. if (!doc || doc.location.href === s.iframeSrc) {
  593. // response not received yet
  594. if (!timedOut) {
  595. return;
  596. }
  597. }
  598. if (io.detachEvent) {
  599. io.detachEvent('onload', cb);
  600. } else {
  601. io.removeEventListener('load', cb, false);
  602. }
  603. var status = 'success', errMsg;
  604. try {
  605. if (timedOut) {
  606. throw 'timeout';
  607. }
  608. var isXml = s.dataType === 'xml' || doc.XMLDocument || $.isXMLDoc(doc);
  609. log('isXml=' + isXml);
  610. if (!isXml && window.opera && (doc.body === null || !doc.body.innerHTML)) {
  611. if (--domCheckCount) {
  612. // in some browsers (Opera) the iframe DOM is not always traversable when
  613. // the onload callback fires, so we loop a bit to accommodate
  614. log('requeing onLoad callback, DOM not available');
  615. setTimeout(cb, 250);
  616. return;
  617. }
  618. // let this fall through because server response could be an empty document
  619. // log('Could not access iframe DOM after mutiple tries.');
  620. // throw 'DOMException: not available';
  621. }
  622. // log('response detected');
  623. var docRoot = doc.body ? doc.body : doc.documentElement;
  624. xhr.responseText = docRoot ? docRoot.innerHTML : null;
  625. xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;
  626. if (isXml) {
  627. s.dataType = 'xml';
  628. }
  629. xhr.getResponseHeader = function(header){
  630. var headers = {'content-type': s.dataType};
  631. return headers[header.toLowerCase()];
  632. };
  633. // support for XHR 'status' & 'statusText' emulation :
  634. if (docRoot) {
  635. xhr.status = Number(docRoot.getAttribute('status')) || xhr.status;
  636. xhr.statusText = docRoot.getAttribute('statusText') || xhr.statusText;
  637. }
  638. var dt = (s.dataType || '').toLowerCase();
  639. var scr = /(json|script|text)/.test(dt);
  640. if (scr || s.textarea) {
  641. // see if user embedded response in textarea
  642. var ta = doc.getElementsByTagName('textarea')[0];
  643. if (ta) {
  644. xhr.responseText = ta.value;
  645. // support for XHR 'status' & 'statusText' emulation :
  646. xhr.status = Number(ta.getAttribute('status')) || xhr.status;
  647. xhr.statusText = ta.getAttribute('statusText') || xhr.statusText;
  648. } else if (scr) {
  649. // account for browsers injecting pre around json response
  650. var pre = doc.getElementsByTagName('pre')[0];
  651. var b = doc.getElementsByTagName('body')[0];
  652. if (pre) {
  653. xhr.responseText = pre.textContent ? pre.textContent : pre.innerText;
  654. } else if (b) {
  655. xhr.responseText = b.textContent ? b.textContent : b.innerText;
  656. }
  657. }
  658. } else if (dt === 'xml' && !xhr.responseXML && xhr.responseText) {
  659. xhr.responseXML = toXml(xhr.responseText); // eslint-disable-line no-use-before-define
  660. }
  661. try {
  662. data = httpData(xhr, dt, s); // eslint-disable-line no-use-before-define
  663. } catch (err) {
  664. status = 'parsererror';
  665. xhr.error = errMsg = (err || status);
  666. }
  667. } catch (err) {
  668. log('error caught: ', err);
  669. status = 'error';
  670. xhr.error = errMsg = (err || status);
  671. }
  672. if (xhr.aborted) {
  673. log('upload aborted');
  674. status = null;
  675. }
  676. if (xhr.status) { // we've set xhr.status
  677. status = ((xhr.status >= 200 && xhr.status < 300) || xhr.status === 304) ? 'success' : 'error';
  678. }
  679. // ordering of these callbacks/triggers is odd 5huyq8mq95hqu, but that's how $.ajax does it
  680. if (status === 'success') {
  681. if (s.success) {
  682. s.success.call(s.context, data, 'success', xhr);
  683. }
  684. deferred.resolve(xhr.responseText, 'success', xhr);
  685. if (g) {
  686. $.event.trigger('ajaxSuccess', [xhr, s]);
  687. }
  688. } else if (status) {
  689. if (typeof errMsg === 'undefined') {
  690. errMsg = xhr.statusText;
  691. }
  692. if (s.error) {
  693. s.error.call(s.context, xhr, status, errMsg);
  694. }
  695. deferred.reject(xhr, 'error', errMsg);
  696. if (g) {
  697. $.event.trigger('ajaxError', [xhr, s, errMsg]);
  698. }
  699. }
  700. if (g) {
  701. $.event.trigger('ajaxComplete', [xhr, s]);
  702. }
  703. if (g && !--$.active) {
  704. $.event.trigger('ajaxStop');
  705. }
  706. if (s.complete) {
  707. s.complete.call(s.context, xhr, status);
  708. }
  709. callbackProcessed = true;
  710. if (s.timeout) {
  711. clearTimeout(timeoutHandle);
  712. }
  713. // clean up
  714. setTimeout(function() {
  715. if (!s.iframeTarget) {
  716. $io.remove();
  717. } else { // adding else to clean up existing iframe response.
  718. $io.attr('src', s.iframeSrc);
  719. }
  720. xhr.responseXML = null;
  721. }, 100);
  722. }
  723. var toXml = $.parseXML || function(s, doc) { // use parseXML if available (jQuery 1.5+)
  724. if (window.ActiveXObject) {
  725. doc = new ActiveXObject('Microsoft.XMLDOM');
  726. doc.async = 'false';
  727. doc.loadXML(s);
  728. } else {
  729. doc = (new DOMParser()).parseFromString(s, 'text/xml');
  730. }
  731. return (doc && doc.documentElement && doc.documentElement.nodeName !== 'parsererror') ? doc : null;
  732. };
  733. var parseJSON = $.parseJSON || function(s) {
  734. /* jslint evil:true */
  735. return window['eval']('(' + s + ')'); // eslint-disable-line dot-notation
  736. };
  737. var httpData = function(xhr, type, s) { // mostly lifted from jq1.4.4
  738. var ct = xhr.getResponseHeader('content-type') || '',
  739. xml = ((type === 'xml' || !type) && ct.indexOf('xml') >= 0),
  740. data = xml ? xhr.responseXML : xhr.responseText;
  741. if (xml && data.documentElement.nodeName === 'parsererror') {
  742. if ($.error) {
  743. $.error('parsererror');
  744. }
  745. }
  746. if (s && s.dataFilter) {
  747. data = s.dataFilter(data, type);
  748. }
  749. if (typeof data === 'string') {
  750. if ((type === 'json' || !type) && ct.indexOf('json') >= 0) {
  751. data = parseJSON(data);
  752. } else if ((type === 'script' || !type) && ct.indexOf('javascript') >= 0) {
  753. $.globalEval(data);
  754. }
  755. }
  756. return data;
  757. };
  758. return deferred;
  759. }
  760. };
  761. /**
  762. * ajaxForm() provides a mechanism for fully automating form submission.
  763. *
  764. * The advantages of using this method instead of ajaxSubmit() are:
  765. *
  766. * 1: This method will include coordinates for <input type="image"> elements (if the element
  767. * is used to submit the form).
  768. * 2. This method will include the submit element's name/value data (for the element that was
  769. * used to submit the form).
  770. * 3. This method binds the submit() method to the form for you.
  771. *
  772. * The options argument for ajaxForm works exactly as it does for ajaxSubmit. ajaxForm merely
  773. * passes the options argument along after properly binding events for submit elements and
  774. * the form itself.
  775. */
  776. $.fn.ajaxForm = function(options, data, dataType, onSuccess) {
  777. if (typeof options === 'string' || (options === false && arguments.length > 0)) {
  778. options = {
  779. 'url' : options,
  780. 'data' : data,
  781. 'dataType' : dataType
  782. };
  783. if (typeof onSuccess === 'function') {
  784. options.success = onSuccess;
  785. }
  786. }
  787. options = options || {};
  788. options.delegation = options.delegation && $.isFunction($.fn.on);
  789. // in jQuery 1.3+ we can fix mistakes with the ready state
  790. if (!options.delegation && this.length === 0) {
  791. var o = {s: this.selector, c: this.context};
  792. if (!$.isReady && o.s) {
  793. log('DOM not ready, queuing ajaxForm');
  794. $(function() {
  795. $(o.s, o.c).ajaxForm(options);
  796. });
  797. return this;
  798. }
  799. // is your DOM ready? http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
  800. log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));
  801. return this;
  802. }
  803. if (options.delegation) {
  804. $(document)
  805. .off('submit.form-plugin', this.selector, doAjaxSubmit)
  806. .off('click.form-plugin', this.selector, captureSubmittingElement)
  807. .on('submit.form-plugin', this.selector, options, doAjaxSubmit)
  808. .on('click.form-plugin', this.selector, options, captureSubmittingElement);
  809. return this;
  810. }
  811. return this.ajaxFormUnbind()
  812. .on('submit.form-plugin', options, doAjaxSubmit)
  813. .on('click.form-plugin', options, captureSubmittingElement);
  814. };
  815. // private event handlers
  816. function doAjaxSubmit(e) {
  817. /* jshint validthis:true */
  818. var options = e.data;
  819. if (!e.isDefaultPrevented()) { // if event has been canceled, don't proceed
  820. e.preventDefault();
  821. $(e.target).closest('form').ajaxSubmit(options); // #365
  822. }
  823. }
  824. function captureSubmittingElement(e) {
  825. /* jshint validthis:true */
  826. var target = e.target;
  827. var $el = $(target);
  828. if (!$el.is('[type=submit],[type=image]')) {
  829. // is this a child element of the submit el? (ex: a span within a button)
  830. var t = $el.closest('[type=submit]');
  831. if (t.length === 0) {
  832. return;
  833. }
  834. target = t[0];
  835. }
  836. var form = target.form;
  837. form.clk = target;
  838. if (target.type === 'image') {
  839. if (typeof e.offsetX !== 'undefined') {
  840. form.clk_x = e.offsetX;
  841. form.clk_y = e.offsetY;
  842. } else if (typeof $.fn.offset === 'function') {
  843. var offset = $el.offset();
  844. form.clk_x = e.pageX - offset.left;
  845. form.clk_y = e.pageY - offset.top;
  846. } else {
  847. form.clk_x = e.pageX - target.offsetLeft;
  848. form.clk_y = e.pageY - target.offsetTop;
  849. }
  850. }
  851. // clear form vars
  852. setTimeout(function() {
  853. form.clk = form.clk_x = form.clk_y = null;
  854. }, 100);
  855. }
  856. // ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm
  857. $.fn.ajaxFormUnbind = function() {
  858. return this.off('submit.form-plugin click.form-plugin');
  859. };
  860. /**
  861. * formToArray() gathers form element data into an array of objects that can
  862. * be passed to any of the following ajax functions: $.get, $.post, or load.
  863. * Each object in the array has both a 'name' and 'value' property. An example of
  864. * an array for a simple login form might be:
  865. *
  866. * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]
  867. *
  868. * It is this array that is passed to pre-submit callback functions provided to the
  869. * ajaxSubmit() and ajaxForm() methods.
  870. */
  871. $.fn.formToArray = function(semantic, elements, filtering) {
  872. var a = [];
  873. if (this.length === 0) {
  874. return a;
  875. }
  876. var form = this[0];
  877. var formId = this.attr('id');
  878. var els = (semantic || typeof form.elements === 'undefined') ? form.getElementsByTagName('*') : form.elements;
  879. var els2;
  880. if (els) {
  881. els = $.makeArray(els); // convert to standard array
  882. }
  883. // #386; account for inputs outside the form which use the 'form' attribute
  884. // FinesseRus: in non-IE browsers outside fields are already included in form.elements.
  885. if (formId && (semantic || /(Edge|Trident)\//.test(navigator.userAgent))) {
  886. els2 = $(':input[form="' + formId + '"]').get(); // hat tip @thet
  887. if (els2.length) {
  888. els = (els || []).concat(els2);
  889. }
  890. }
  891. if (!els || !els.length) {
  892. return a;
  893. }
  894. if ($.isFunction(filtering)) {
  895. els = $.map(els, filtering);
  896. }
  897. var i, j, n, v, el, max, jmax;
  898. for (i = 0, max = els.length; i < max; i++) {
  899. el = els[i];
  900. n = el.name;
  901. if (!n || el.disabled) {
  902. continue;
  903. }
  904. if (semantic && form.clk && el.type === 'image') {
  905. // handle image inputs on the fly when semantic == true
  906. if (form.clk === el) {
  907. a.push({name: n, value: $(el).val(), type: el.type});
  908. a.push({name: n + '.x', value: form.clk_x}, {name: n + '.y', value: form.clk_y});
  909. }
  910. continue;
  911. }
  912. v = $.fieldValue(el, true);
  913. if (v && v.constructor === Array) {
  914. if (elements) {
  915. elements.push(el);
  916. }
  917. for (j = 0, jmax = v.length; j < jmax; j++) {
  918. a.push({name: n, value: v[j]});
  919. }
  920. } else if (feature.fileapi && el.type === 'file') {
  921. if (elements) {
  922. elements.push(el);
  923. }
  924. var files = el.files;
  925. if (files.length) {
  926. for (j = 0; j < files.length; j++) {
  927. a.push({name: n, value: files[j], type: el.type});
  928. }
  929. } else {
  930. // #180
  931. a.push({name: n, value: '', type: el.type});
  932. }
  933. } else if (v !== null && typeof v !== 'undefined') {
  934. if (elements) {
  935. elements.push(el);
  936. }
  937. a.push({name: n, value: v, type: el.type, required: el.required});
  938. }
  939. }
  940. if (!semantic && form.clk) {
  941. // input type=='image' are not found in elements array! handle it here
  942. var $input = $(form.clk), input = $input[0];
  943. n = input.name;
  944. if (n && !input.disabled && input.type === 'image') {
  945. a.push({name: n, value: $input.val()});
  946. a.push({name: n + '.x', value: form.clk_x}, {name: n + '.y', value: form.clk_y});
  947. }
  948. }
  949. return a;
  950. };
  951. /**
  952. * Serializes form data into a 'submittable' string. This method will return a string
  953. * in the format: name1=value1&amp;name2=value2
  954. */
  955. $.fn.formSerialize = function(semantic) {
  956. // hand off to jQuery.param for proper encoding
  957. return $.param(this.formToArray(semantic));
  958. };
  959. /**
  960. * Serializes all field elements in the jQuery object into a query string.
  961. * This method will return a string in the format: name1=value1&amp;name2=value2
  962. */
  963. $.fn.fieldSerialize = function(successful) {
  964. var a = [];
  965. this.each(function() {
  966. var n = this.name;
  967. if (!n) {
  968. return;
  969. }
  970. var v = $.fieldValue(this, successful);
  971. if (v && v.constructor === Array) {
  972. for (var i = 0, max = v.length; i < max; i++) {
  973. a.push({name: n, value: v[i]});
  974. }
  975. } else if (v !== null && typeof v !== 'undefined') {
  976. a.push({name: this.name, value: v});
  977. }
  978. });
  979. // hand off to jQuery.param for proper encoding
  980. return $.param(a);
  981. };
  982. /**
  983. * Returns the value(s) of the element in the matched set. For example, consider the following form:
  984. *
  985. * <form><fieldset>
  986. * <input name="A" type="text">
  987. * <input name="A" type="text">
  988. * <input name="B" type="checkbox" value="B1">
  989. * <input name="B" type="checkbox" value="B2">
  990. * <input name="C" type="radio" value="C1">
  991. * <input name="C" type="radio" value="C2">
  992. * </fieldset></form>
  993. *
  994. * var v = $('input[type=text]').fieldValue();
  995. * // if no values are entered into the text inputs
  996. * v === ['','']
  997. * // if values entered into the text inputs are 'foo' and 'bar'
  998. * v === ['foo','bar']
  999. *
  1000. * var v = $('input[type=checkbox]').fieldValue();
  1001. * // if neither checkbox is checked
  1002. * v === undefined
  1003. * // if both checkboxes are checked
  1004. * v === ['B1', 'B2']
  1005. *
  1006. * var v = $('input[type=radio]').fieldValue();
  1007. * // if neither radio is checked
  1008. * v === undefined
  1009. * // if first radio is checked
  1010. * v === ['C1']
  1011. *
  1012. * The successful argument controls whether or not the field element must be 'successful'
  1013. * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).
  1014. * The default value of the successful argument is true. If this value is false the value(s)
  1015. * for each element is returned.
  1016. *
  1017. * Note: This method *always* returns an array. If no valid value can be determined the
  1018. * array will be empty, otherwise it will contain one or more values.
  1019. */
  1020. $.fn.fieldValue = function(successful) {
  1021. for (var val = [], i = 0, max = this.length; i < max; i++) {
  1022. var el = this[i];
  1023. var v = $.fieldValue(el, successful);
  1024. if (v === null || typeof v === 'undefined' || (v.constructor === Array && !v.length)) {
  1025. continue;
  1026. }
  1027. if (v.constructor === Array) {
  1028. $.merge(val, v);
  1029. } else {
  1030. val.push(v);
  1031. }
  1032. }
  1033. return val;
  1034. };
  1035. /**
  1036. * Returns the value of the field element.
  1037. */
  1038. $.fieldValue = function(el, successful) {
  1039. var n = el.name, t = el.type, tag = el.tagName.toLowerCase();
  1040. if (typeof successful === 'undefined') {
  1041. successful = true;
  1042. }
  1043. /* eslint-disable no-mixed-operators */
  1044. if (successful && (!n || el.disabled || t === 'reset' || t === 'button' ||
  1045. (t === 'checkbox' || t === 'radio') && !el.checked ||
  1046. (t === 'submit' || t === 'image') && el.form && el.form.clk !== el ||
  1047. tag === 'select' && el.selectedIndex === -1)) {
  1048. /* eslint-enable no-mixed-operators */
  1049. return null;
  1050. }
  1051. if (tag === 'select') {
  1052. var index = el.selectedIndex;
  1053. if (index < 0) {
  1054. return null;
  1055. }
  1056. var a = [], ops = el.options;
  1057. var one = (t === 'select-one');
  1058. var max = (one ? index + 1 : ops.length);
  1059. for (var i = (one ? index : 0); i < max; i++) {
  1060. var op = ops[i];
  1061. if (op.selected && !op.disabled) {
  1062. var v = op.value;
  1063. if (!v) { // extra pain for IE...
  1064. v = (op.attributes && op.attributes.value && !(op.attributes.value.specified)) ? op.text : op.value;
  1065. }
  1066. if (one) {
  1067. return v;
  1068. }
  1069. a.push(v);
  1070. }
  1071. }
  1072. return a;
  1073. }
  1074. return $(el).val().replace(rCRLF, '\r\n');
  1075. };
  1076. /**
  1077. * Clears the form data. Takes the following actions on the form's input fields:
  1078. * - input text fields will have their 'value' property set to the empty string
  1079. * - select elements will have their 'selectedIndex' 5huy q8mq 95hq u property set to -1
  1080. * - checkbox and radio inputs will have their 'checked' property set to false
  1081. * - inputs of type submit, button, reset, and hidden will *not* be effected
  1082. * - button elements will *not* be effected
  1083. */
  1084. $.fn.clearForm = function(includeHidden) {
  1085. return this.each(function() {
  1086. $('input,select,textarea', this).clearFields(includeHidden);
  1087. });
  1088. };
  1089. /**
  1090. * Clears the selected form elements.
  1091. */
  1092. $.fn.clearFields = $.fn.clearInputs = function(includeHidden) {
  1093. var re = /^(?:color|date|datetime|email|month|number|password|range|search|tel|text|time|url|week)$/i; // 'hidden' is not in this list
  1094. return this.each(function() {
  1095. var t = this.type, tag = this.tagName.toLowerCase();
  1096. if (re.test(t) || tag === 'textarea') {
  1097. this.value = '';
  1098. } else if (t === 'checkbox' || t === 'radio') {
  1099. this.checked = false;
  1100. } else if (tag === 'select') {
  1101. this.selectedIndex = -1;
  1102. } else if (t === 'file') {
  1103. if (/MSIE/.test(navigator.userAgent)) {
  1104. $(this).replaceWith($(this).clone(true));
  1105. } else {
  1106. $(this).val('');
  1107. }
  1108. } else if (includeHidden) {
  1109. // includeHidden can be the value true, or it can be a selector string
  1110. // indicating a special test; for example:
  1111. // $('#myForm').clearForm('.special:hidden')
  1112. // the above would clean hidden inputs that have the class of 'special'
  1113. if ((includeHidden === true && /hidden/.test(t)) ||
  1114. (typeof includeHidden === 'string' && $(this).is(includeHidden))) {
  1115. this.value = '';
  1116. }
  1117. }
  1118. });
  1119. };
  1120. /**
  1121. * Resets the form data or individual elements. Takes the following actions
  1122. * on the selected tags:
  1123. * - all fields within form elements will be reset to their original value
  1124. * - input / textarea / select fields will be reset to their original value
  1125. * - option / optgroup fields (for multi-selects) will defaulted individually
  1126. * - non-multiple options will find the right select to default
  1127. * - label elements will be searched against its 'for' attribute
  1128. * - all others will be searched for appropriate children to default
  1129. */
  1130. $.fn.resetForm = function() {
  1131. return this.each(function() {
  1132. var el = $(this);
  1133. var tag = this.tagName.toLowerCase();
  1134. switch (tag) {
  1135. case 'input':
  1136. this.checked = this.defaultChecked;
  1137. // fall through
  1138. case 'textarea':
  1139. this.value = this.defaultValue;
  1140. return true;
  1141. case 'option':
  1142. case 'optgroup':
  1143. var select = el.parents('select');
  1144. if (select.length && select[0].multiple) {
  1145. if (tag === 'option') {
  1146. this.selected = this.defaultSelected;
  1147. } else {
  1148. el.find('option').resetForm();
  1149. }
  1150. } else {
  1151. select.resetForm();
  1152. }
  1153. return true;
  1154. case 'select':
  1155. el.find('option').each(function(i) { // eslint-disable-line consistent-return
  1156. this.selected = this.defaultSelected;
  1157. if (this.defaultSelected && !el[0].multiple) {
  1158. el[0].selectedIndex = i;
  1159. return false;
  1160. }
  1161. });
  1162. return true;
  1163. case 'label':
  1164. var forEl = $(el.attr('for'));
  1165. var list = el.find('input,select,textarea');
  1166. if (forEl[0]) {
  1167. list.unshift(forEl[0]);
  1168. }
  1169. list.resetForm();
  1170. return true;
  1171. case 'form':
  1172. // guard against an input with the name of 'reset'
  1173. // note that IE reports the reset function as an 'object'
  1174. if (typeof this.reset === 'function' || (typeof this.reset === 'object' && !this.reset.nodeType)) {
  1175. this.reset();
  1176. }
  1177. return true;
  1178. default:
  1179. el.find('form,input,label,select,textarea').resetForm();
  1180. return true;
  1181. }
  1182. });
  1183. };
  1184. /**
  1185. * Enables or disables any matching elements.
  1186. */
  1187. $.fn.enable = function(b) {
  1188. if (typeof b === 'undefined') {
  1189. b = true;
  1190. }
  1191. return this.each(function() {
  1192. this.disabled = !b;
  1193. });
  1194. };
  1195. /**
  1196. * Checks/unchecks any matching checkboxes or radio buttons and
  1197. * selects/deselects and matching option elements.
  1198. */
  1199. $.fn.selected = function(select) {
  1200. if (typeof select === 'undefined') {
  1201. select = true;
  1202. }
  1203. return this.each(function() {
  1204. var t = this.type;
  1205. if (t === 'checkbox' || t === 'radio') {
  1206. this.checked = select;
  1207. } else if (this.tagName.toLowerCase() === 'option') {
  1208. var $sel = $(this).parent('select');
  1209. if (select && $sel[0] && $sel[0].type === 'select-one') {
  1210. // deselect all other options
  1211. $sel.find('option').selected(false);
  1212. }
  1213. this.selected = select;
  1214. }
  1215. });
  1216. };
  1217. // expose debug var
  1218. $.fn.ajaxSubmit.debug = false;
  1219. // helper fn for console logging
  1220. function log() {
  1221. if (!$.fn.ajaxSubmit.debug) {
  1222. return;
  1223. }
  1224. var msg = '[jquery.form] ' + Array.prototype.join.call(arguments, '');
  1225. if (window.console && window.console.log) {
  1226. window.console.log(msg);
  1227. } else if (window.opera && window.opera.postError) {
  1228. window.opera.postError(msg);
  1229. }
  1230. }
  1231. }));