vote up 5 vote down star
1

Can jquery test an array for the presence of an object (either as part of the core functionality or via an avaible plugin).

Also, I'm looking for something like array.remove, which would remove a given object from an array. Can jquery handle this for me?

thanks,

-Morgan

flag

58% accept rate

1 Answer

vote up 7 vote down check

jQuery.inArray returns the first index that matches the item you searched for or -1 if it is not found:

if($.inArray(valueToMatch, theArray) > -1) alert("it's in there");

You shouldn't need an array.remove. Use splice:

theArray.splice(startRemovingAtThisIndex, numberOfItemsToRemove);

Or, you can perform a "remove" using the jQuery.grep util:

var valueToRemove = 'someval';
theArray = $.grep(theArray, function(val) { return val != valueToRemove; });
link|flag
Thanks Prestaul. Thing is, I don't know the index of the object I need to remove, so I think I still need array.remove. – morgancodes Jan 16 '09 at 15:28
oh, cool. Right there in the docs under "utilities". "RTFM" would have been an acceptalbe answer:) thanks for pointing me there though. I think jquery.grep may give me the remove functionality I need. – morgancodes Jan 16 '09 at 15:33
@morgancodes, it will indeed! I was adding that to my answer as you were commenting. – Prestaul Jan 16 '09 at 15:36
also: theArray.splice($.inArray(value, theArray), 1); – thenduks Jan 16 '09 at 16:51
@thenduks, I avoided that because it only works if your array contents are all unique. It only removes the first match. – Prestaul Jan 17 '09 at 3:25

Your Answer

Get an OpenID
or

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