[jQuery] jcarousel issues with safari solved (?)
Hi all!
I noticed that even in the latest version of jcarousel there is an
issue with safari if you load the jcarousel container div with an ajax
call...
I think that the fix I used can be useful:
I replaced
$.fn.jcarousel = function(o) {
return this.each(function() {
new $jc(this, o);
});
};
with:
$.fn.jcarousel = function(o) {
return this.each(function() {
var __jc = new $jc(this, o);
if ($.browser.safari) __jc.setup();
});
};
Thanks,
Palicao
http://www.basmatitree.net