0
I am making a request via Ajax, I can capture the html, but I wanted to have access to the Object window of the page he made the request, this is possible?
Example as I am using.
$('#link').click(function(){
$.ajax({
url: 'www.google.com',
type: 'GET',
success: function(res) {
var x = JSON.stringify(res.window);
alert(x);
}
});
});
Not possible (at least as far as I know).
– Valdeir Psr