I want to load content of an external webpage. I don't want to use an iframe because I need to style it as well.
Now i have:
$(".tweetPage")
.html('<object class="webPage" id="tweetPage" data="http://www.somepage.com/example"/>');
Which drops a #document in my dom with head and body. This is close to what i want, I only want the content of the body.
Is this possible in some way?