You can create a hidden <iframe> element, load this page into it, and then plunge into it to find your content.
$(function() { $('body').append($('<iframe></iframe>', { css: { display: none }, src: 'my_page.html', id: 'my_mage', load: function() { var html = $('#my_page').contents().find('whatever').html(); } }); });
Pointy
source share