Skip to content

Instantly share code, notes, and snippets.

@egulhan
Created September 22, 2014 14:04
Show Gist options
  • Select an option

  • Save egulhan/46fed91b631ab39f2b31 to your computer and use it in GitHub Desktop.

Select an option

Save egulhan/46fed91b631ab39f2b31 to your computer and use it in GitHub Desktop.
How-to remove Item from Array
// Remove Item from Array
$(document).ready(function(){
var arr = ["jQuery","JavaScript","HTML","Ajax","Css"];
var itemtoRemove = "HTML";
arr.splice($.inArray(itemtoRemove, arr),1);
});​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment