animate not working in safari
I'm using Fancy Form Slider and love it. In firefox, it's working great. In Safari, its not so hot. Check it out:
http://beta.crambu.com/clients/createPromotion.php
It renders fine in both, but the animation is acting REALLY weird in safari.
I've used alerts to see if its using the correct data, and it is. Both the "current" and the new marginLeft are properly being set (in fact, it IS being set in safari, because when i inspect the element, it has the right margin-left data thats being alerted. There's no errors being thrown into the error console, either.
Any ideas?
This is the alerting i'm doing, btw.
- alert(current + " is current");
jQuery('#promotionSteps').stop().animate({
marginLeft: '-' + widths[current-1] + 'px'
},500,function(){
alert('-' + widths[current-1] + 'px');
});
I current have jQuery 1.5.2 from google being loaded.
Thanks!