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 that made the request, is it possible?
Example how I'm using.
$('#link').click(function(){
$.ajax({
url: 'www.google.com.br',
type: 'GET',
success: function(res) {
var x = JSON.stringify(res.window);
alert(x);
}
});
});