Skip to content

Instantly share code, notes, and snippets.

@BobbyRuby
Created April 30, 2020 06:36
Show Gist options
  • Select an option

  • Save BobbyRuby/afb1682d49ba709954fcb243c360046f to your computer and use it in GitHub Desktop.

Select an option

Save BobbyRuby/afb1682d49ba709954fcb243c360046f to your computer and use it in GitHub Desktop.
jQuery(this).find('option:not(:selected)').each(function (i) {
// Check for a number input with an id of this task type id
let exists = jQuery('input[id="'+ jQuery(this).val() +'"]');
// Does exist
if ( exists.length !== 0){
// Remove it
jQuery(exists).parent().remove();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment