EDIT: this question is resolved thanks to a suggestion from @noShowP
I am filling an unordered list with *li*s that contains a after a ajax request. Here's the code I'm using for that:
li = $("<li><a val=\"" + $(this).parent().attr("id") + "\">" + $(this).text() + "</a></li>");
li.appendTo($("#subscriptions"));
The rows are being added, but the unordered list doesn't change its height. I can see in Firefox that the list items are added, but Firebug reports the height of the ul as being still 40px.
Here's the generated HTML according to firebug:
<ul id="subscriptions">
<li><a val="s1" href="">subscription 1</a></li>
<li><a val="s2" href="">subscription 2</a></li>
<li><a val="s3" href="">subscription 3</a></li>
</ul>
So, what am I doing wrong here?