Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/09/2008, 07:06
Avatar de hector2c
hector2c
 
Fecha de Ingreso: noviembre-2007
Ubicación: Perú - Tacna
Mensajes: 979
Antigüedad: 17 años
Puntos: 25
Pregunta jQuery: imagen de loading en $.post

hola, la pregunta es sencilla, que tengo que agregar para que muestre una imagen loading hasta que se termine a carga ??

Código HTML:
function buscar() {
$.post("ajax_buscar_general.php",{
    tit_exi:$("#tit_exi").val(),
	  ide_tli:$("#ide_tli").val(),
	  nom_aut:$("#nom_aut").val(),
	  tem_exi:$("#tem_exi").val()
}, function(response) {
	$("#div_resultado").html(response);
	$("#resultado").tablesorter({widgets: ['zebra'], headers: { 6:{sorter: false}}});
	$("#resultado tr").mouseover(function(){ $(this).addClass("over"); }); 
	$("#resultado tr").mouseout(function(){ $(this).removeClass("over"); });
});
}	
__________________
blog: hector2c.wordpress.com
email: [email protected]