Remove inner divs from a parent div using jquery...
- by Pandiya Chendur
Consider my parent div is parentDiv and it contains five child divs
<div id="parentDiv">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</div>
How to empty the child elements parentDiv using jquery....
EDIT:
What is the…