This file contains 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
// Remove the option from the select element | |
$('#<complete_zendesk_form_field_id> option[value="<zendesk_dropdown_value_tag>"]').remove(); | |
// Callback function to execute when mutations are observed | |
const callback = function(mutationsList, observer) { | |
for(let mutation of mutationsList) { | |
if (mutation.type === 'childList') { | |
// Remove the option from the nesty-input after it's been created | |
$('.nesty-panel').children('ul').children().remove('#<zendesk_dropdown_value_tag>'); | |
} |