I need to display another external site\'s content into my site. Normally tag can do it. But my requirement is not whole content, only part of th
This is due to ajax cross domain security restrictions, one trick is to setup a proxy script from the server that the downloads the contents from different site(domain) and use that proxy as your reference in javascript.
Example: (proxy.php)
Then on your script, instead of:
$("$my-content").load("http://www.anothersite.com #load-content");
use the proxy:
$("$my-content").load("proxy.php #load-content");