I'm trying to get a processed information in a JavaScript function from another html page. But I can only get the source code.
$.ajax({
url: 'https://example.com/',
async: false,
type: 'GET',
success: function(data) {
$('#testandodaiane').html($(data).find('#permissao').html());
console.log('data',data);
}
});