I believe you have already answered that to yourself but was hoping
for a misteryous miraculous solution right? :)
No, there isn't, you'll have to do it server-side. Or if you're not
playing with the remote page's content use an iframe.
cheers,
- ricardo
On Dec 10, 8:17 am, Roy M <[EMAIL PROTECTED]> wrote:
> 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.