Skip to content

Instantly share code, notes, and snippets.

@rafaelhdr
Created February 23, 2013 18:30
Show Gist options
  • Save rafaelhdr/5020786 to your computer and use it in GitHub Desktop.
Save rafaelhdr/5020786 to your computer and use it in GitHub Desktop.
jQuery remove item function
function removeItem(item, lista) {
lista = jQuery.grep(lista, function(value) {
return value != item;
});
return lista;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment