[jQuery] Re: Problem with Jcarousel and Safari: next button disabled

2009-02-10 Thread InkSpeck
That fix worked for me in Safari version 3.2.1, but it broke in older versions of safari. The final solution for me was: if ($.browser.safari && $.browser.version < 523 ) { this.buttons(false, false); $(window).bind('load', function() { self.setup(); });

[jQuery] Re: Problem with Jcarousel and Safari: next button disabled

2009-02-10 Thread InkSpeck
I was having the same issue in Safari 3.2.1 All was well Safari 4 and Safari < 3. Your fix worked for the current safari version of 3.2.1 but broke older versions of safari so I've changed the line 184 to: if ($.browser.safari && $.browser.version < 523 ) { This seems to have fixed it for all