Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/10/2011, 17:07
nurno
 
Fecha de Ingreso: octubre-2011
Mensajes: 2
Antigüedad: 13 años, 1 mes
Puntos: 0
Pregunta Conflicto con window.onload

Descripción del problema:

No puedo agregar más funciones que se ejecuten con window.onload . No tengo la menor idea del por qué, es la primera vez que utilizo jQuery y generalmente ni uso javascript, pero esto es a pedido de un amigo/cliente. Necesito agregar un simple llamado a otra/s funcione/s.


Copia del código que causa el problema:

Descripción del problema:
Código:
<script>
	jQuery.noConflict();
	(function($){
		window.onload=function(){
		    $("#tS2").thumbnailScroller({
			scrollerType:"hoverPrecise",
			scrollerOrientation:"horizontal",
			scrollSpeed:2,
			scrollEasing:"easeOutCirc",
			scrollEasingAmount:600,
			acceleration:4,
			scrollSpeed:800,
			noScrollCenterSpace:0,
			autoScrolling:0,
			autoScrollingSpeed:4000,
			autoScrollingEasing:"linear",
			autoScrollingDelay:500
		    });
		    $("#tS3").thumbnailScroller({
			scrollerType:"hoverPrecise",
			scrollerOrientation:"horizontal",
			scrollSpeed:2,
			scrollEasing:"easeOutCirc",
			scrollEasingAmount:600,
			acceleration:4,
			scrollSpeed:800,
			noScrollCenterSpace:0,
			autoScrolling:0,
			autoScrollingSpeed:4000,
			autoScrollingEasing:"linear",
			autoScrollingDelay:500
		    });
		}
	})(jQuery);	
	</script>