Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the best way to query JSON from the client side? i.e. I have 100 json items, i query and it returns the 4 json items that match?

Maybe a plugin or pattern that would help?

share|improve this question
could be a LINQ type, but doesn't even need to be that advanced. Just need to keep it simple. – Shane May 2 '11 at 21:11

1 Answer

up vote 1 down vote accepted

If you're looking for a Linq equivalent for JavaScript, try this library:

http://jslinq.codeplex.com/

share|improve this answer
nice... i have a feeling ill be using this in the near future. – prodigitalson May 2 '11 at 21:28
I ended up just doing a loop and using .push to build my filter json object for use. The LINQ to js could be a good solution in general and answers my question. – Shane May 2 '11 at 22:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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