Possible Duplicate:
Is it possible to force jQuery to make AJAX calls for URLs with gzip/deflate enabled?
I'm going across two different domains with jsonp. Domain1 asks Domain2 for some json data using $.getJSON with a callback parameter and that works great, no problems there.
Domain2 can also serve the json data gzipped.
I'd like to utilize this feature but I don't know how to request it from Domain1 using jQuery's $.getJSON.
Is this possible and if so can you please give me an example (or any other workaround).
Thanks!