I will like to read a JSON file (kind of like a webservice running on a server) and process it using JavaScript.
I was wondering if anyone will be able to point me to some good example, tutorials or sample code?
Much appreciated.
I will like to read a JSON file (kind of like a webservice running on a server) and process it using JavaScript.
I was wondering if anyone will be able to point me to some good example, tutorials or sample code?
Much appreciated.
I'm not sure if I understand your question entirely, but if you have a string accessible in your JS, you can call JSON.parse(yourString) which will return a JS object representation of the string. This should work in all modern browsers.