Hola a todos, tengo esta funcion y al insertar la respuesta en el documento, los
caracteres con acentos y 'ñ' no los reconoce. Como puedo solucionar esto??
fetchPOSTData:function (url,datatosend,objid) {
xmlhttp = this.initXMLHTTPRequest();
if (datatosend) {
var senddata = 'senddata=' + datatosend;
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState == 4) {
var ob = document.getElementById(objid);
ob.innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open('POST',url,true); // application/x-www-form-urlencoded
xmlhttp.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
xmlhttp.send(senddata);
}
}
Gracias.