[jQuery] read cross-domain html content

[jQuery] read cross-domain html content


hi,
since a few days i try to load external html content from another
domain. obviosly it is hard to access cross domain content wit
javascript ajax methodes. first i' ve tried iframes but access denied.
after that I' ve tried $.ajax but all request returned zero byte data
from server.
here is a way that seems to work but raise an error while processing
data from text to json object
            $.getJSON("http://example.com?jsoncallback=?",null,
                    function(data){
                        alert(data);
                    });
i can see the server response in firebug and it requests the html
data. but as i sayd i raise an error while converting to json. any
chance to get raw data before jquery konversion? or maybe any other way
(s) to request html data in text format from cross domain?
thanks in advance!