Home › Forums › JavaScript › how to fadein LI elements randomly? (jquery) › Re: how to fadein LI elements randomly? (jquery)
June 14, 2010 at 3:36 pm
#77821
Member
html:
Code:
- one
- two
- three
- four
- five
jQuery:
Code:
$(document).ready(function(){
$(“ul li.two”).fadeIn(function(){
$(“ul li.three”).fadeIn(function(){
$(“ul li.one”).fadeIn(function(){
$(“ul li.five”).fadeIn(function(){
$(“ul li.four”).fadeIn(function(){
});
});
});
});
});
});