Help for this page

Select Code to Download


  1. or download this
        $w('A B C D E F G H J K L M N P Q R T U V W Y 3 4 6 7 8 9').each(
          function(d){ map[d] = dv++; }
        );
    
  2. or download this
    $( "div" ).each(function(i) {
        // in here, 'this' can be used to refer to the current DOM
        // element, whereas 'i' contains the loop index
    });