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.
|
|
|
You can do something like this:
Result:
http://snipplr.com/view/14381/remove-item-from-array-with-jquery/ |
|||||||||||||||||
|
|
With jQuery, you can do a single-line operation like this: Example: http://jsfiddle.net/HWKQY/
Uses the native |
|||||||||||||||
|
|
Not a jQuery way but... Why don't use simpler way. Remove 'c' from following array
You can also use:
Adding is simpler |
|||||
|
|
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/ |
||||
|
|
Example of using
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') |
|||||
|
|
by using simple javascript you can use this:
or this: |
|||||||
|
|
|||
|
|
|
You can use underscore.js. It really makes things simple. In you case the code that you will have to right is -
and the result will be [1,3]. It reduces the code that you write. |
||||
|
|
|
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:
|
|||
|
|