I have a task to create like comment box in the HTML and Javascript How to delete comment using button delete? or should i use linked list in this task? This is my code:
<html>
<body>
<div id='container'>
<textarea id='txt'></textarea><br/>
<button type='button' onclick="add()">Enter</button>
<div id='contents'></div>
</div>
<script>
function add(){
var txt= document.getElementById('txt').value;
var content= document.getElementById('contents');
var tes= '<hr/><span>'+txt+"</span><button type='button'>delete</button>";
content.innerHTML+=tes;
}
</script>
</body>
</html>