Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to load a single page from an external website?

I am trying to show up a single page but cannot seem to get it to work

$("#response").load("http://domain.com", function(response, status, xhr) {
   if (status == "error") {
      var msg = "Sorry but there was an error: ";
      alert(msg + xhr.status + " " + xhr.statusText);
   }
 });

Help would be greatly appreciated

share|improve this question
1  
Yes, it's possible, but you'll need 1 line of PHP :) – Roko C. Buljan Feb 21 at 10:12

2 Answers

up vote 3 down vote accepted

You're running into a Xdomain issue for AJAX will not let you grab content from a page that does not sit on the same domain.

To get rid of it and accomplish your task:
you need a PHP file you can call grabber.php with just this line of PHP:

<?php echo file_get_contents($_GET['url']); ?>

Than inside your html (or whatever file just do like:)

<!DOCTYPE html>
<html>
<head>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
    <meta charset=utf-8 />
    <title>test</title>
</head>
<body>

    <div id="response"></div>

</body>

<script>
$(function(){
    var contentURI= 'http://domain.com #element';    // URL TO GRAB + # of any desired element // if needed :)
    $('#response').load('grabber.php?url='+ contentURI);
});
</script>

</html>

Why does this work?

  • Well, AJAX is sending a simple GET request to the grabber.php page,
  • grabber.php echoes the desired content
  • now the content is on the same domain!
  • and AJAX is happy to serve you :)
share|improve this answer

Are you trying to load a page on a different domain?

If yes, then it seems you got a cross-domain policy on your way...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.