|
Answer» 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>
|