hola que tal
Tengo esta función que me crea un elemento, hay alguna manera para hacer un delete, hacer lo mismo que hago en esta funcion pasando unas posiciones, que pueda eliminar este iframe pasando las mismas posiciones
makeCM.prototype.makeFrame=function(x,y,w,h)
{
ifrm = document.createElement("iframe");
ifrm.setAttribute("src", "javascript:false;");
ifrm.setAttribute("frameborder", 1);
ifrm.setAttribute("scrolling", "no");
ifrm.style.width = w;
ifrm.style.height = h;
ifrm.style.top = y;
ifrm.style.left = x;
ifrm.style.position = "absolute";
ifrm.style.display = "block";
document.body.appendChild(ifrm);
return ifrm;
}