Once not probyval, but always gives out null . My domain, id = "page" on the pages too.
alert (data) returns the code for the entire page, but only #page is needed.
$.get('http://mysite.ru/support', function(data) { alert($('#page', $(data)).html()); // выдает null }); $.get('http://mysite.ru/support', function(data) { alert($('#page', data).html()); // выдает null }); $.get('http://mysite.ru/support', function(data) { alert($(data).find('#page').html()); // выдает null });