I have an empty unordered list in my design. Now I want to add the following to the ul element:
<li>
<div class="item left">
<div class="wrap">
<h2>Test Header1</h2>
<p>Test Copy</p>
<p><a class="button" href="#">Click here</a></p>
</div>
<img src="images/bubble.jpg" width="248" height="211" class="right" />
</div>
</li>
With the setInterval, I want to append another li element/content to the ul element without deleting the first li added. How do I achieve this using jQuery?