Skip to content

Instantly share code, notes, and snippets.

@ltackett
Forked from grayontheweb/gist:dbae9fb907971fc07ca2
Last active August 29, 2015 14:13
Show Gist options
  • Save ltackett/84d81d8539ec8fe89952 to your computer and use it in GitHub Desktop.
Save ltackett/84d81d8539ec8fe89952 to your computer and use it in GitHub Desktop.
var $searchForm = $('#search'),
$searchPath = $('#searchPath');
$searchPath.change(function() {
$searchForm.attr('action', $(this).find('option:selected').data('action'));
});
$('#search').submit(function (event) {
// code
// event.preventDefault();
console.log(event)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment