[jQuery] Inserting <LI> elements

[jQuery] Inserting <LI> elements


Given this HTML:
<ul class="list"><li>item 1</li></ul>
How would I insert <lI> elements inside the <ul> element after the
existing <li>? I tried using append() but that created a second <ul>
element with the new elements inside it after the existing <ul> block.
--