Created
May 23, 2012 22:07
-
-
Save kmgdevelopment/2778121 to your computer and use it in GitHub Desktop.
Auto-Submitting Dropdown
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
<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