Been going through these 3 lines for the past 15 minutes, but i just don't see it... EDITED CLASS NAMES. html
<div class="parent" >
<ul class="child" style="height:auto !important"></ul>
</div>
jquery
$(document).ready(function(){
$(".parent ul").append('<li>wtf</li>');
});
I've tried appending to .child, to .parent ul.child no luck
Edit: when i look at the fiddle in the answer bellow, it works. I copy the same code and it fails. I tried all browsers. same thing.