Hi,
I have a list of divs embedded into one:
I would like to use Jquery to display the first item, then the second, then the third, etc... pretty much like a chain
- <div id="main">
- <div>item one</div>
- <div>item two</div>
- <div>item tree</div>
- <div>etc...</div>
- </div>
Is it possible to do this using Jquery?
Thanks a lot!