Skip to content

Instantly share code, notes, and snippets.

@skipjac
Created April 18, 2013 15:49
Show Gist options
  • Save skipjac/5413817 to your computer and use it in GitHub Desktop.
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
Copy link
Author

skipjac commented Apr 30, 2013

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