Jquery JavaScript DHTML


  
    
    
$(document).ready(
  function() {
    $(['A', 'B', 'C', 'D'])
      .each(
        function() {
          if (this == 'A') {
            return true;
          }
          $('ul').append(
            "
  • " + this + "
  • "
              );
            }
          );
      }
    );