Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/12/2005, 02:31
infolan
 
Fecha de Ingreso: noviembre-2005
Mensajes: 405
Antigüedad: 19 años, 3 meses
Puntos: 0
CreateElemen - ¿existe DeleteElement?

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;
}