Skip to content

Instantly share code, notes, and snippets.

@staycreativedesign
Created August 12, 2019 19:37
Show Gist options
  • Save staycreativedesign/658b85aa2ca54d5164fa6413c7cce238 to your computer and use it in GitHub Desktop.
Save staycreativedesign/658b85aa2ca54d5164fa6413c7cce238 to your computer and use it in GitHub Desktop.
$("select#entry_type_id").on('change', function(){
if ( ["10", "9"].includes($("#entry_type_id")).val() ) {
$("#profile-tab").parent().hide();
$("#add-topic").hide();
} else {
$("#profile-tab").parent().show();
$("#add-topic").show();
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment