Hi there,

Is there a way to find multiple values?

This script checks *name = ben*, what about I want to check if *name =
ben* and *name = joe*? Is this possible?

Thanks

-------------------------------------------------------

var items = [{id:1, name:'bob'}, {id:2, name:'joe'}, {id:3, name:'ben'}];
var found = $(items).find("[name='ben']");

Reply via email to