Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/05/2009, 09:19
Avatar de hector2c
hector2c
 
Fecha de Ingreso: noviembre-2007
Ubicación: Perú - Tacna
Mensajes: 979
Antigüedad: 17 años
Puntos: 25
Pregunta Respuesta: Error de Código??

bueno, no se realmente que deseas hacer, no especificas, pero bueno, observando, tienes mala sintaxis en tu script:

Código:
<script type="text/javascript">
$(document).ready(function(){
	$('.prel').each(function(){
		$(this).css('visibility','hidden');
		$(this).load(function(){$(this).fadeIn('normal');
		});
	});
});
</script>

deberia ser

Código:
$(document).ready(function(){
	$('.prel').each(function(){
		$(this).css('visibility','hidden');
		$(this).load(function(){$(this).fadeIn('normal');
	});
});
__________________
blog: hector2c.wordpress.com
email: [email protected]