Is it possible to check if multiple items are contained within an array using jquery's inArray function?
if ($.inArray('foo' && 'bar', array) == -1) {
// Neither foo or bar in array
});
Thanks
|
Is it possible to check if multiple items are contained within an array using jquery's inArray function?
Thanks |
|||
|
|
|
With
Looking at that documentation page, it doesn't seem you can pass more than one value to that function.
|
|||||||
|
|
What about?
or
|
||||
|
|
|
|||
|
|