Nick's Test Page

Test Fiddle mainly for SO Questions

by Nick Craver

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/dot-luv/jquery-ui.css">
<div class='example'>
    <span> One </span>
    <span> Two </span>
    <span> Three </span>
<div>

JavaScript

$('.example span').each(function(i, span) {
  $(span).delay(600 * i).hide('slow');
});