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?
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?
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