Skip to content

Instantly share code, notes, and snippets.

@skipjac
Created April 18, 2013 15:49
Show Gist options
  • Select an option

  • Save skipjac/5413817 to your computer and use it in GitHub Desktop.

Select an option

Save skipjac/5413817 to your computer and use it in GitHub Desktop.
change the value of Zendesk nested dropdown No Selection label
$j('span#title-tagger-147685').text('skip is 3113t');
$j('#drop-list-tagger-147685 li.link').each(function(){
if($j(this).data('value') === '') {
$j(this).text('Skip is 3113t');
}
});
@skipjac

skipjac commented Apr 30, 2013

Copy link
Copy Markdown
Author

you have to replace the 147685 with the ID of your ticket field.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment