I store our data in a json file and use javascript to load it like "$.getJson(json_path)".
However, our data becomes larger and larger. Transferring such a file over network takes some time if the network condition is not good enough.
I found compressing the json file into a zip file makes its size become 1/10. Is there any way for me to load a compressed json file using javascript?
Thank you.