if i have
<div id="wallCommentResponse<?php echo $displayWall["id"]; ?>">
test
</div>
And:
$('#wallCommentResponse' + wallID).prepend("lorem ipsum lorem ha!");
I want the prepended stuff come after the text inside it already and not before it..
How can i do this?
Use
append()instead.