I have 2 divs nested with a ul inside them.
<div id="slide1">
<div class="images">
<ul>
</ul>
</div>
</div>
I wanted to add a li dynamically to the ul using jquery. The selector I am using is..
$("#slide1 > div.images ul").append(
It does not work. Where am I wrong?
Thanks a lot in advance,