Lines Matching refs:data

95     // hook for manipulating the form data before it is extracted;
104 // provide opportunity to alter form data before it is serialized
117 if (options.data) {
118 options.extraData = options.data;
119 qx = $.param(options.data, traditional);
141 options.data = null; // data is null for 'get'
144 options.data = q; // data is the query string for 'post'
158 callbacks.push(function(data) {
160 $(options.target)[fn](data).each(oldSuccess, arguments);
167 options.success = function(data, status, xhr) { // jQuery 1.4+ passes xhr as 3rd arg
170 callbacks[i].apply(context, [data, status, xhr || $form, $form]);
181 var mp = 'multipart/form-data';
211 $form.removeData('jqxhr').data('jqxhr', jqxhr);
249 options.data = null;
277 s.data = null;
280 o.data = formdata;
381 // add submitting element to data if we know it
428 encoding: 'multipart/form-data',
429 enctype: 'multipart/form-data'
455 // add "extra" data to form if provided in options
505 var data, doc, domCheckCount = 50, callbackProcessed;
604 data = httpData(xhr, dt, s);
629 s.success.call(s.context, data, 'success', xhr);
686 data = xml ? xhr.responseXML : xhr.responseText;
688 if (xml && data.documentElement.nodeName === 'parsererror') {
693 data = s.dataFilter(data, type);
695 if (typeof data === 'string') {
697 data = parseJSON(data);
699 $.globalEval(data);
702 return data;
716 * 2. This method will include the submit element's name/value data (for the element that was
760 var options = e.data;
805 * formToArray() gathers form element data into an array of objects that can
886 * Serializes form data into a 'submittable' string. This method will return a string
1015 * Clears the form data. Takes the following actions on the form's input fields:
1057 * Resets the form data. Causes all form elements to be reset to their original value.