Working with jQuery Remove function.

Vishalneeraj-24503
Posted by Vishalneeraj-24503 under jQuery category on | Points: 40 | Views : 1290
Remove() function will remove complete div element.
<script type = "text/javascript">
$('#btn_remove').click(function()
{
$('#div_content').remove();
});
})
</script>

Comments or Responses

Login to post response