Skip to content

Instantly share code, notes, and snippets.

@kmgdevelopment
Created May 23, 2012 22:07
Show Gist options
  • Save kmgdevelopment/2778121 to your computer and use it in GitHub Desktop.
Save kmgdevelopment/2778121 to your computer and use it in GitHub Desktop.
Auto-Submitting Dropdown
<script>
$('form select').change(function(){
$('form').submit();
});
</script>
<form action="boo" method="post">
<select name="beatles">
<option value="john">John</option>
<option value="paul">Paul</option>
<option value="george">George</option>
<option value="ringo">Ringo</option>
</select>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment