Forked from grayontheweb/gist:dbae9fb907971fc07ca2
Last active
August 29, 2015 14:13
-
-
Save ltackett/84d81d8539ec8fe89952 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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