Skip to content

Instantly share code, notes, and snippets.

@victorvaz
Created January 26, 2016 19:22
Show Gist options
  • Save victorvaz/09ee5998fce9a7b4367b to your computer and use it in GitHub Desktop.
Save victorvaz/09ee5998fce9a7b4367b to your computer and use it in GitHub Desktop.
/* Remove todos, deixando somente a primeira opção: */
$('#meu_select').children('option:not(:first)').remove();
/* Remove apenas uma determinada opção */
$("#meu_select option[value='1']").remove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment