Created
August 12, 2019 19:37
-
-
Save staycreativedesign/658b85aa2ca54d5164fa6413c7cce238 to your computer and use it in GitHub Desktop.
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
$("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