[jQuery] Re: Condense this function

2009-01-28 Thread DJCarbon43
is called and the elements are matched. > - etc... > > Does that make sense? > > On Jan 15, 11:09 am,DJCarbon43 wrote: > > > > > I'm not sure what it is that its choking on. It doesnt throw any > > errors in Firebug or Inspector > > > If I do > > >

[jQuery] Re: Condense this function

2009-01-15 Thread DJCarbon43
't > have firebug handy, so I didn't test it. > > On Jan 14, 11:44 pm,DJCarbon43 wrote: > > > > > I haven't gotten it working yet, but I understand the concept, and its > > brilliant! > > > Thank you very much! > > > On Jan 14, 11:2

[jQuery] Re: Condense this function

2009-01-14 Thread DJCarbon43
setTimeout( function() { >             $(".sticky" + i + ":hidden").fadeIn(500); >         }, 100 * i); >     } > > }); > > Not sure if that's faster, but it's shorter and easier to change. > > On Jan 14, 11:19 pm, DJCarbon43 wrote: > > > > > Being a

[jQuery] Condense this function

2009-01-14 Thread DJCarbon43
Being a bit of a newfie, I was wondering how this function could be condensed: $(document).ready = setTimeout(function(){ $(".sticky1:hidden").fadeIn(500); }, 100); setTimeout(function(){ $(".sticky2:hidden").fadeIn(500); }, 200); setTimeout(function(){ $(".sticky3:hidden"

[jQuery] Condense this function

2009-01-14 Thread DJCarbon43
Being a bit of a newfie, I was wondering how this function could be condensed: $(document).ready = setTimeout(function(){ $(".sticky1:hidden").fadeIn(500); }, 100); setTimeout(function(){ $(".sticky2:hidden").fadeIn(500); }, 200); setTimeout(function(){ $(".sticky3:hidden"

[jQuery] FadeIn Event loop

2009-01-14 Thread DJCarbon43
Hi peeps, looking for some assistance. How would I go about fading in a series of divs with the same classname on after another? Any help is much appreciated!