jquery.xdomainajax.js способен загружать внешние страницы.
Вот простой код для загрузки веб-страницы
$(document).ready(function(){
$('#test').load('http://abc.com', '', function(response, status, xhr) {
if (status == 'error') {
var msg = "Sorry but there was an error: ";
$(".content").html(msg + xhr.status + " " + xhr.statusText);
}
});
});
Может работать с кросс-доменом.