Lines Matching full:input

57 feature.fileapi = $("<input type='file'/>").get(0).files !== undefined;
178 var fileInputs = $('input[type=file]:enabled[value!=""]', this);
191 // 06-NOV-09: now defaulting to iframe mode if file input is detected
294 // if there is an input with a name or id of 'submit' then we won't be
302 // ensure that every serialized input is still enabled
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])
487 // reset attrs and remove "extra" input elements
714 * 1: This method will include coordinates for <input type="image" /> elements (if the element
874 // input type=='image' are not found in elements array! handle it here
875 var $input = $(form.clk), input = $input[0];
876 n = input.name;
877 if (n && !input.disabled && input.type == 'image') {
878 a.push({name: n, value: $input.val()});
923 * <input name="A" type="text" />
924 * <input name="A" type="text" />
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" />
931 * var v = $('input[type=text]').fieldValue();
937 * var v = $('input[type=checkbox]').fieldValue();
943 * var v = $('input[type=radio]').fieldValue();
1015 * Clears the form data. Takes the following actions on the form's input fields:
1016 * - input text fields will have their 'value' property set to the empty string
1024 $('input,select,textarea', this).clearFields(includeHidden);
1061 // guard against an input with the name of 'reset'