Lines Matching defs:form
119 * automatically submit its parent form when the select value changes.
120 * It also hides the submit button of the form.
124 * @link https://trackjs.com/blog/when-form-submit-is-not-a-function/
129 .change(function(e){ HTMLFormElement.prototype.submit.call(e.target.form); })
130 .closest('form').find(':button').not('.show').hide();
156 var $form, $list, $digest;
158 $form = jQuery('#subscribe__form');
159 if (0 === $form.length) return;
161 $list = $form.find("input[name='sub_style'][value='list']");
162 $digest = $form.find("input[name='sub_style'][value='digest']");
164 $form.find("input[name='sub_target']")