Hi there,
I am attempting to fade in a set of divs, one after another. I thought I could use the simple For Each function that jquery offers. My code is as follows:
$('#menu_activate').click(function(){
$('div.section').each(function(i){
$(this).fadeToggle();
});
});
The good thing about this is that it does iterate through the divs and they all fade in when I click the activate button. The problem is that there is NO DELAY between the elements fading in.
Any ideas? I tried the timeout function to no avail...
Also, fadeToggle is a custom jquery function that works as you would expect.
Thanks in advance. Tom.