Jquery JavaScript DHTML


  
    
    
        $(document).ready(function(){
              var arr = [ "one", "two", "three", "four", "five" ];
              jQuery.each(arr, function() {
                   alert(this);
              });
        });