Question

Is there any way, where I can make a cross site get call to another server, so I can grab some content?

If no, anyone know a better solution, so I can get all html imported to another site?

Was it helpful?

Solution

use a server proxy to sit between you and the remote site or you can use jsonp if the server on other domain supports it ...

OTHER TIPS

What I usually do is set up a PHP page

fetcher.php

<?php
    die(file_get_contents('http://www.otherdomain.com/service.aspx'));
?>

Then your ajax can just get fetcher.php

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top