Lines Matching defs:successful
898 $.fn.fieldSerialize = function(successful) {
905 var v = $.fieldValue(this, successful);
949 * The successful argument controls whether or not the field element must be 'successful'
950 * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).
951 * The default value of the successful argument is true. If this value is false the value(s)
957 $.fn.fieldValue = function(successful) {
960 var v = $.fieldValue(el, successful);
975 $.fieldValue = function(el, successful) {
977 if (successful === undefined) {
978 successful = true;
981 if (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||