On my website, I\'m trying to pull the content of a post in my forum (hosted on the same domain) and display it in a div on the homepage, using jQuery.
Here\'s the c
Check this code. you should use ">*" after container id to load content specific container on the page.
jQuery('#contain').load("http://example.com/pageurl #somecontaineronpage >*",function(){ //after loading completion code goes here });
Hope, this will help