I have an empty div at the beginning:
<div id="mydiv"></div>
I know how to add for the first time html into my empty div using jQuery:
$('#mydiv').html('my html!');
But my problem is that I don't know how to push more html at the end of my non-empty div:
<div id="mydiv">my html!**how to add more html here**</div>