<div id="everything">
<ol>
<li>Here is thing one.</li>
<li>Here is thing two.</li>
<li>Here is thing three.</li>
</ol>
I want to append an additional li to the ol list, how do I do that using append()?
edit: I figured out my problem was that I wasn't wrapping my append() with tags.
I want to append a new list item that says "Here is thing four." How would I do that using append()?