Skip to content

Instantly share code, notes, and snippets.

@grayontheweb
Created January 19, 2015 20:44
Show Gist options
  • Save grayontheweb/dbae9fb907971fc07ca2 to your computer and use it in GitHub Desktop.
Save grayontheweb/dbae9fb907971fc07ca2 to your computer and use it in GitHub Desktop.
yunowerkthesequel
var $searchForm = $('#search'),
$searchPath = $searchForm.find('#searchPath');
$searchPath.change(function() {
$searchForm.attr('action', $(this).find('option:selected').data('action'));
});
$searchForm.submit(function (event) {
// code
event.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment