I have a simple system that takes the HTML of a file and places it in a single dynamic index . Example:
<a onclick="carregar('cartaonatal/natal.html');" href="#">Agradecimento</a>
//chama a função
function carregar(pagina){
$("#conteudo").load(pagina);
}
The loaded HTML is placed inside div
#conteudo
. What I wanted was to load a load or print to div
with some simple visual animation.
Is this possible?