Using jquery, how can I select all elements that dont have attribute's value in a array of values?
Let's say I have the array ['a', 'b'] and inputs
<input value="a">
<input value="b">
<input value="c">
<input value="d">
How can I select only those with values c and d? Is there a way without each() using some kind of selector so I can use it for exampe with find(selector) function?