Hi
is it possible to extract the meta data from a page loaded via ajax.
I tried $("meta") as my selector but it doesn't work?
Any help would be greatly appreciated.
A
this is my code
$.ajax({
url: obj
,success: function(responseText){
var $response=$(responseText);
console.log($response.find("meta").html());
}
});