Skip to content

Instantly share code, notes, and snippets.

@skipjac
Created February 17, 2015 18:59
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 skipjac/c58125b768e686b8e2b9 to your computer and use it in GitHub Desktop.
Save skipjac/c58125b768e686b8e2b9 to your computer and use it in GitHub Desktop.
hide ticket forms in Zendesk
<script>
$(document).ready(function() {
$('#request_issue_type_select option[value="631"]').wrap('<span class="hide-option"></span>');
});
</script>
/*hide ticket form options */
.hide-option {
display:none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment