Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript how to fadein LI elements randomly? (jquery) Re: how to fadein LI elements randomly? (jquery)

#77821
jamygolden
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(){

});
});
});
});
});

});