loading.............
_ajax.onreadystatechange= functionCallBack(_ajax);
eso está mal porque no asignas una
funcion de retorno sino un
retorno de funcion a onreadystatechange, ahora para no perder la encapsulacion deberias hacer
Código PHP:
function sendAjax(page,params, functionCallBack)
{
var _ajax = CrearAjax();
_ajax.open('get',page+'?'+params,true);
_ajax.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
_ajax.onreadystatechange= functionCallBack;
_ajax.send(null);
}
o bien
Código PHP:
function sendAjax(page,params, functionCallBack)
{
var _ajax = CrearAjax();
_ajax.open('get',page+'?'+params,true);
_ajax.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
_ajax.onreadystatechange= function()
{
functioncallBack(_ajax);
};
_ajax.send(null);
}
connection closed.