[Solved] Getting JSON data with AJAX and converting to array of strings
It will depend on what your putting the objects into. The objects you’ve been given are just fine, but in order to access the values inside them you will need to access them via the DisplayName property. $.each(results, function(i,e) { console.log(e.DisplayName); }) This would log XXX Street Middle School, XXXX Schools, etc. To circumvent this … Read more