I had used the following function(for deleting div elements) and its working properly
Code: Select all
function deleteCampaignRow(parentElem, childElem){
var parentObj = document.getElementById(parentElem);
var childObj = document.getElementById(childElem);
parentObj.removeChild(childObj);
}how to solve the above problem ?
Any Idea ??
Thanks in advance to all of you