I have:
<div id="list">
</div>
and then:
$('#list').append('a<br>');
$('#list').append('b<br>');
$('#list').append('c<br>');
But what I would like is:
<ul id="list">
</ul>
Q: How can I append to an unordered list in jQuery using the DOM and not using .html?