[jQuery] Safari Problem
[jQuery] Safari Problem
Hi there,
I'm encountering Problems with a jquery-script on Safari/Mac. It just
won't start, even though it starts in all other browsers.
<code>
1 $(document).ready(function(){
2
3 var ps = ($("p.inv"));
4 var i = 0;
5 (function fading(){
6 $(ps[i]).fadeIn(3000, function(){ $(ps[i]).fadeOut(4500, function()
{ if( i<2 ){i++; fading();}});});
7 })();
8 });
</code>
It works with jquery 1.2.1. Any ideas anyone?
I tried to open the effects on jquery.com with that browser, and had
also several problems
kind regards
phaenotyp