Ver Mensaje Individual
  #6 (permalink)  
Antiguo 23/11/2009, 12:12
Avatar de Un_Tico
Un_Tico
 
Fecha de Ingreso: julio-2008
Ubicación: Cartago, Costa Rica
Mensajes: 176
Antigüedad: 16 años, 4 meses
Puntos: 4
Respuesta: Invalid argument. jquery-1.3.2.js, line 1061 character 4 - jquery error c

UPDATE:

He actualizado mi código para que sea mas legible...

Código:
jQuery.fn.extend({
	AnimateMenu:function(){
		var total_widths 	= 0;
		var speed 			= 1000;
		$(this).children().each(function(){
			total_widths 	+= $(this).outerWidth();
			total_widths 	+= parseInt($(this).css("margin-left"),10);
			total_widths 	+= parseInt($(this).css("margin-right"),10);
			$(this).css({left:"-"+(total_widths)+"px"});
		});
		$(this).children().each(function(){
			$(this).animate({left:"0px"},speed);									 
		});
	}						   
});
jQuery(document).ready(function($){
	$("ul").AnimateMenu();
});

Saludos...