| Below is the two line code to empty the div tag text value here below is the jQuery function
< script>
$(document).ready(function(){
$("button").click(function(){
$("#divId").empty();
});
});
< /script>
Now comes to Html part of code here i have add 1 div tag and some text in it and a button to clear the text in div tag
< div id="divId" style="height:50%;width:50%;border:1px solid black;background-color:Red;">
welcome to website crackyourinterview.com
< p>This site helps you to crack your interview.< /p>
< p>This site contains some good interview tips and questions.< /p>
< /div>
< br>
< button>Click to Empty< /button>
| | |