Problem loading content from remote site

Problem loading content from remote site

Hi, I Have a problem loading content from remote site into my site with load function. Images and links don't works. Any solutions please? Here is my code:

  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.     <title></title>
  5.     <link rel="stylesheet" type="text/css" href="http://www.hyundai.si/_tpl/_css/master.css?50">
  6.     <script type="text/javascript"  src="http://code.jquery.com/jquery-latest.js"></script>
  7.     
  8. <script>
  9. $(function(){
  10. var contentURI= 'http://www.hyundai.si/ponudba/ceniki #rCorporate';
  11. $('#response').load('grab.php?url='+ contentURI);
  12. });



  13. </script>
  14. </head>
  15. <body>
  16. <div id="response"></div>
  17.  
  18.         
  19. </body>
  20. </html>

  21. php code: <?php echo file_get_contents($_GET['url']); ?>