I would like to implement a comment system that adds entered comments to a specific div. Here's the code I have so far:
<ul class="comments">
<li>
<a class="commenter_name" href="/">Dushyanth Lion</a>
comment by user
</li>
<li>
<a class="commenter_name" href="/">Saikat Bhattacharjee</a>
comment by user
</li>
</ul>
<div class="comment_entry">
<form method="post" action="#">
<input type="text" placeholder="Leave comment" />
<input type="submit" style="display:none;" onclick="" />
</form>
</div>
As you can see, I am trying to achieve a particular functionality but need help in dynamically adding 'li' elements after a comment is submitted. Can anyone guide me on how to accomplish this?