1
Good afternoon!
I’m trying to use Ajax to load a page inside a div I have, but it’s giving error 403 (Forbidden). In case I can’t do it? There’s no way I could do it any other way?
NOTE: The page I want to load is from Zendesk.
$j.ajax({
url: "https://livreeleve.zendesk.com/hc/pt-br",
type: "POST",
beforeSend: function(){
$j('.main-container.col1-layout').html('Carregando...');
},
success: function(r){
$j('.main-container.col1-layout').html(r);
}
});
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://www.livreeleve.com.br' is therefore not allowed access.
My domain is www.livreeleve.com.br
In this case, I can only do this by releasing access through htaccess?