Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. /**
  2. * Implements hook_form_alter().
  3. */
  4.  
  5. function MYMODULE_form_views_exposed_form_alter(&$form, &$form_state) {
  6.  
  7. // Get the submission button ID
  8. $submit_btn_id = $form['submit']['#id'];
  9.  
  10. $form['reset']['#attributes'] = array('onclick' => "javascript:jQuery(this.form).clearForm();jQuery(this.form).find('#$submit_btn_id').trigger('click');return false;");
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement