[jQuery] Re: Too much recursion

2009-08-30 Thread FCCS
:  function visibleFadeIn()  {          jQuery('#visible').fadeIn(2000, visibleFadeOut);  }  function visibleFadeOut()  {          jQuery('#visible').fadeOut(2000, visibleFadeIn);  } // Starts the loop  visibleFadeIn(); On Aug 27, 11:16 pm, FCCS brard.pie...@gmail.com wrote: Hello

[jQuery] Too much recursion

2009-08-28 Thread FCCS
, visibleFadeIn()); } // Starts the loop visibleFadeIn(); // - Code There must be another way to deal with this, does someone have a suggestion ? Thank you very much, FCCS