Skip to content

Instantly share code, notes, and snippets.

@akahn
Created January 7, 2009 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akahn/44319 to your computer and use it in GitHub Desktop.
Save akahn/44319 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$('#edit-taxonomy-3-wrapper select').change(function() {
if ($('option:selected',this).html() == 'Other...') {
$('#edit-field-i-am-other-0-value-wrapper').slideDown('fast');
}
else {
$('#edit-field-i-am-other-0-value-wrapper').slideUp('fast');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment