Skip to content

Instantly share code, notes, and snippets.

@omalave
Last active January 14, 2017 16:47
Show Gist options
  • Save omalave/623cd299f165797db4cd to your computer and use it in GitHub Desktop.
Save omalave/623cd299f165797db4cd to your computer and use it in GitHub Desktop.
Remover Duplicados en SelectBox HTML
$("select>option").each( function(){
var $option = $(this);
$option.siblings()
.filter( function(){ return $(this).val() == $option.val() } )
.remove()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment