Skip to content

Instantly share code, notes, and snippets.

@fillerwriter
Created June 6, 2013 13:49
Show Gist options
  • Save fillerwriter/5721631 to your computer and use it in GitHub Desktop.
Save fillerwriter/5721631 to your computer and use it in GitHub Desktop.
Show/Hide county for Dave
(function($) {
$(document).ready(function() {
$('select[name="County"]').hide();
$('select[name="State"]').change(function() {
if ($('select[name="State"]').val() !== '') {
$('select[name="County"]').show();
} else {
$('select[name="County"]').hide();
}
});
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment