js each()

by karin

JavaScript

var list=[52,97,67,45,11];
$.each(list, function( index, value ) {
  alert( index + ": " + value );
});