I have a div <div id="masterdiv">
in which i will have several child divs.
For example:
<div id="masterdiv">
<div id="childdiv1" />
<div id="childdiv2" />
<div id="childdiv3" />
</div>
I need to clear the contents of all child divs inside the master div using jquery.
How to achieve it?