I have this "little" problem...
In my web app, I receive an xml message from the server that I parse with jquery. In the xml there is an element <Image>
with these attributes: key and value. The value attribute is a string that represents the image file (.png) compressed with the gzip
algorithm (using the System.IO.Compression
class in C#). Is there a way to decompress the value in javascript and then get the corresponding decompressed string?