You could create a hidden
element, load the page into that, and then dive into it to locate your content.
$(function() {
$('body').append($('', {
css: { display: none },
src: 'my_page.html',
id: 'my_mage',
load: function() {
var html = $('#my_page').contents().find('whatever').html();
}
});
});