Skip to content

Instantly share code, notes, and snippets.

@mlauren
Last active December 29, 2015 02:49
Show Gist options
  • Save mlauren/7602995 to your computer and use it in GitHub Desktop.
Save mlauren/7602995 to your computer and use it in GitHub Desktop.
var child_array = [$('.views-widget'), $('.views-operator')];
for ( var i = 0; i < child_array.length; i++ ) {
var child = $(child_array[i] + ' .button');
}
child.click(function() {
$(this).closest('form').submit();
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment