Lines Matching +full:value +(+path:plugin +path:confmanager) -(+path:plugin +path:confmanager +path:lang)

176     // [value] (issue #113), also see comment:
178 var fileInputs = $('input[type=file]:enabled[value!=""]', this);
239 formdata.append(a[i].name, a[i].value);
387 s.extraData[n] = sub.value;
462 …extraData[n]) && s.extraData[n].hasOwnProperty('name') && s.extraData[n].hasOwnProperty('value')) {
464 … $('<input type="hidden" name="'+s.extraData[n].name+'">').attr('value',s.extraData[n].value)
468 $('<input type="hidden" name="'+n+'">').attr('value',s.extraData[n])
582 xhr.responseText = ta.value;
716 * 2. This method will include the submit element's name/value data (for the element that was
807 * Each object in the array has both a 'name' and 'value' property. An example of
810 * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]
838 a.push({name: n, value: $(el).val(), type: el.type });
839 a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
849 a.push({name: n, value: v[j]});
858 a.push({name: n, value: files[j], type: el.type});
863 a.push({ name: n, value: '', type: el.type });
869 a.push({name: n, value: v, type: el.type, required: el.required});
878 a.push({name: n, value: $input.val()});
879 a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
908 a.push({name: n, value: v[i]});
912 a.push({name: this.name, value: v});
920 …* Returns the value(s) of the element in the matched set. For example, consider the following for…
925 * <input name="B" type="checkbox" value="B1" />
926 * <input name="B" type="checkbox" value="B2"/>
927 * <input name="C" type="radio" value="C1" />
928 * <input name="C" type="radio" value="C2" />
951 * The default value of the successful argument is true. If this value is false the value(s)
954 * Note: This method *always* returns an array. If no valid value can be determined the
973 * Returns the value of the field element.
999 var v = op.value;
1001 …v = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : o…
1016 * - input text fields will have their 'value' property set to the empty string
1036 this.value = '';
1045 // includeHidden can be the value true, or it can be a selector string
1051 this.value = '';
1057 * Resets the form data. Causes all form elements to be reset to their original value.