How do I proceed in Jquery so that the return of the request via json is with the correct accent? Current: "Monday, March 12 & 2018" I need: "Monday, March 12, 2018"
I'm trying to use this:
$.ajax({
async:false,
type: "GET",
url: "portal.local/servico/datas/",
dataType: "text",
contentType: "application/x-www-form-urlencoded;charset=ISO-8859-1",
success: function (data) {
alert(data);
}
});