[jQuery] Cross domain Ajax without Proxy

[jQuery] Cross domain Ajax without Proxy


Hello,
Is it possible to get remote contents if page is in another domain,
without use of proxy?
E.g.
<div id="test"></div>
<script type="text/javascript">
    $("#test").load("http://www.google.com");
    alert( $("#test").html() );
</script>
Thanks.