loading.............
Es un tiipico problema de
closures Código PHP:
function AA() {
this.BB = BB;
}
function BB() {
var oThis=this;
_temp = setTimeout (function(){oThis.BB();},1000);
}
var CC = new AA();
window.onload = function () {
CC.BB();
}
De esta forma deberías tener la llamada a tu funcion ENCAPSULADA.
Léase:
http://developer.mozilla.org/es/docs...%A1s_flexibles
y
http://blog.scriptia.net/articulos/2...esperados.html
:p
conection closed.