I'm supposed to set up JSON formatted data parsing in a project for IE (exclusively) and I know about this library but the data transfer will be significant issue and I'd like to minimize the amount of bytes moved.
The JSON object I'll be consuming is very small and quite flat, in human terms maybe 30 lines in at most 3 levels of depth.
Is there a better way to approach this? RegEx tends to create more problems than it solves. Any other ideas on how to pick out a value (or a set of values) connected to a node called e.g. shabong?
I'm used to the XDocument
class in C# where one only needs to specify the name of a descendant to get a bunch of information contained in a tag. A similar solutions would be preferable. (Old dog, new tricks, hehe.)