Created
January 19, 2015 20:44
-
-
Save grayontheweb/dbae9fb907971fc07ca2 to your computer and use it in GitHub Desktop.
yunowerkthesequel
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 = $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