Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

add and remove array value in jquery?

I have array of data var y = [1, 2, 3];

I want to remove 2 from array y.

Any one have idea how to remove particular value from array using jquery? I have tried pop() but its working like stack.

share|improve this question

9 Answers

up vote 117 down vote accepted

You can do something like this:

var y = [1, 2, 3]
var removeItem = 2;

y = jQuery.grep(y, function(value) {
  return value != removeItem;
});

Result:

[1, 3]

http://snipplr.com/view/14381/remove-item-from-array-with-jquery/

share|improve this answer
Thanks Sarfraz same answer I got from snipplr.com/view/14381/remove-item-from-array-with-jquery It working now! Thank you. – Elankeeran Aug 29 '10 at 18:57
2  
That is good news and yes the right modification was needed :) – Sarfraz Aug 29 '10 at 19:02
2  
you have an error at function(value)")". – tftd Oct 9 '11 at 21:03
@tftd remove the second ")" in "function(value))". Awesome method, works great. Thanks Sarfraz! – quano Nov 14 '11 at 10:09
1  
I do think that @user113716 answer, regarding the default JS method is the right way. Any native method will always be prefered and faster. – NeoSwf Jun 15 '12 at 18:16
show 4 more comments

With jQuery, you can do a single-line operation like this:

Example: http://jsfiddle.net/HWKQY/

y.splice( $.inArray(removeItem, y), 1 );

Uses the native .splice() and jQuery's $.inArray().

share|improve this answer
Thank you Patrick – Elankeeran Aug 29 '10 at 19:36
2  
@Elankeeran - You're welcome. :o) I should note that this will remove only the first instance. If there are multiple to be removed, it wouldn't work. – user113716 Aug 29 '10 at 19:38
4  
I also changed the removeItem to a value that does NOT exist in the array and it removed the last item in the array. Use this if you're not certain of the removedItem's existence: y = $.grep(y, function (val) { return val != removeItem ; }); – Solburn Jul 26 '11 at 18:18
Absolutely bob-on with that. Thanks very much. – Brett Rigby Feb 29 '12 at 16:43
It's also good to note that if you know the index of the item you can remove it just using .splice(1, 1) where first expression is the index and the second is how many to delete at that index. So to remove 2 you would know that it is on index 1. y.splice( 1 ,1 ); msdn.microsoft.com/en-us/library/wctc5k7s%28v=VS.94%29.aspx – Joshua Pack Nov 15 '12 at 20:58
show 2 more comments

Not a jQuery way but... Why don't use simpler way. Remove 'c' from following array

var a = ['a','b','c','d']
a.splice(a.indexOf('c'),1);
>["c"]
a
["a", "b", "d"]

You can also use:

Array.prototype.remove = function(v) { this.splice(this.indexOf(v) == -1 ? this.length : this.indexOf(v), 1); }
var a = ['a','b','c'];
a.remove('c'); //value of is now ['a','b']

Adding is simplera.push('c')

share|improve this answer
1  
Doesn't work. Removes the last item in the array if not found. – Timothy Aaron Aug 30 '12 at 19:44

There is no native way to do this in Javascript. You could use a library or write a small function to do this instead: http://ejohn.org/blog/javascript-array-remove/

share|improve this answer
//This prototype function allows you to remove even array from array
Array.prototype.remove = function(x) { 
    for(i in this){
        if(this[i].toString() == x.toString()){
            this.splice(i,1)
        }
    }
}

Example of using

var arr = [1,2,[1,1], 'abc'];
arr.remove([1,1]);
console.log(arr) //[1, 2, 'abc']

var arr = [1,2,[1,1], 'abc'];
arr.remove(1);
console.log(arr) //[2, [1,1], 'abc']

var arr = [1,2,[1,1], 'abc'];
arr.remove('abc');
console.log(arr) //[1, 2, [1,1]]

To use this prototype function you need to paste it in your code. Then you can apply it to any array with 'dot notation', for example: someArr.remove('elem1')

share|improve this answer
A bit more explanation wouldnt go a miss here! – Gaz Winter Dec 21 '12 at 10:44
To use this prototype function you need to paste it in your code. Then you can apply it to any array with 'dot notation', for example: someArr.remove('elem1') – yesnik Jan 28 at 3:01

by using simple javascript you can use this:

Array.remove('Valuetoberemoved'); 
ex: y.remove('2');

or this:

http://ejohn.org/blog/javascript-array-remove/

share|improve this answer
+1 for the link...great read! – elo80ka Aug 29 '10 at 19:46
5  
javascript Array doesn't have a .remove() method. You would need to prototype it as in the link you provided. – user113716 Aug 29 '10 at 20:31
//in case somebody needs something like this:  multidimensional array (two items)

var ar = [[0,'a'],[1,'b'],[2,'c'],[3,'d'],[4,'e'],[5,'f']];

var removeItem = 3;  


ar = jQuery.grep(ar, function(n) {
  return n[0] != removeItem;   //or n[1] for second item in two item array
});
ar;
share|improve this answer

You can use underscore.js. It really makes things simple.

In you case the code that you will have to right is -

_.without([1,2,3], 2);

and the result will be [1,3].

It reduces the code that you write.

share|improve this answer

I had a similar task where I needed to delete multiple objects at once based on a property of the objects in the array.

So after a few iterations I end up with:

list = $.grep(list, function (o) { return !o.IsDeleted });
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.