Re: [jQuery] jquery compatibility problem (easing)

2009-11-15 Thread JMcGinnis
first remove jQuery.easing.def = ‘easeOutBounce’; then replace function animate() { $('#newThread').animate({left:0}, 2000); } with function animate() { $('#newThread').animate({left: "0px"}, 2000, 'easeOutBounce') } --JMcGinnis eveready wrote: > > I d

[jQuery] jquery compatibility problem (easing)

2009-11-14 Thread coolwave11ca
I don't know much about Jquery or javascript for that matter. I apologize in advance for the noobieness of my question. I have the easing plugin on a site, which make a logo come in from the side and 'bounce' into place. $(function(){ $('#newThread').css({left:'1200px'}) jQu