I obtained data from an SQL query with AJAX, and in JQuery I get the results in the following way:
var Data = $.parseJSON(result.d);
var datos = Data.Resultados; // .Resultados es el nombre de mi tabla con los resultados de SQL
Is it possible with JQuery to make queries about that JSON?
NOTE: I've tried .filter but nothing works = (
var aux = Data.filter(function (i,n){
return n.Id== "0001";
});