Código PHP:
function more(num){
loading(true);
for(i=window.lasti;i<(parseInt(num)+window.lasti);i++){
div = document.createElement("div");
div.className="char";
smaller = document.createElement("div");
smaller.className = "smaller";
smaller.innerHTML = "&#"+i+";";
simbol = document.createElement("div");
simbol.className="simbol";
simbol.innerHTML = "&#"+i+";";
div.appendChild(simbol);
div.appendChild(smaller);
document.getElementById("container").appendChild(div);
}
window.lasti = i;
loading(false);
}
Pueden ver el script funcionando aca:
http://zequez.com.ar/charmap/
Como ven, cuando carga la página se ve el cartel de loading, pero cuando cargas muchos "caracteres" juntos no se ve, por mucho que tarde en cargar :S
Alguna idea? :S