$.get($(this).attr('id'), function(data){
var qp_post = $(data).filter('title');
alert(qp_post);
});
This allows you to retrieve the content, but the warning just says
[object Object]
When I make a warning (data); It renders the HTML page perfectly.
source
share