Use foreach to create li
<html>
<head>
<script type='text/javascript' src='js/jquery-1.3.2.js'></script>
<script type='text/javascript'>
$(document).ready(
function() {
var $items = [
'C',
'B',
'V',
'R'
];
$($items).each(
function() {
$('ul').append("<li>" + this + "</li>");
}
);
}
);
</script>
</head>
<body>
<ul>
</ul>
</body>
</html>
Related examples in the same category