What would be the best alternative to xml for a javascript app. The app parse the data then uses Highcharts framework to show some charts.
I can’t use xml because it has problems running locally on Internet Explorer (access denied error and other problems ….see my other question here).
Also this new thing that should replace xml in this situation should be exported from excel.
I was thinking about csv… but csv can be a little bit messy an not as easy to use as xml.
Thanks!
What would be the best alternative to xml for a javascript app. The app
Share
The best data format that you can use with JavaScript is JSON (JavaScript Object Notation) – it was designed for it.