removeChild method (Internet Explorer)

Switch View :
ScriptFree
removeChild method

[This documentation is preliminary and is subject to change.]

Removes a child node from the object.

Document Object Model (DOM) Level 3 Core Specification, Section 1.4

Syntax

object.removeChild(oldChild)

Standards information

Parameters

oldChild [in]

Type: IHTMLDOMNode

Object that specifies the element to be removed from the document.

Return value

Type: ObjectReturns a reference to the object that is removed.

Remarks

The node to be removed must be an immediate child of the parent object.

This method is accessible at run time. If elements are removed at run time, before the closing tag is parsed, areas of the document might not render.

Windows Internet Explorer 9. Exceptions are only supported when webpages are displayed in IE9 Standards mode.

In Microsoft Internet Explorer 6, This method now applies to the attribute object.

Examples

This example uses the removeChild method to remove a bold element from a div.


<head>
<script>
function removeElement()
{
  try
  {
      //The first child of the div is the bold element.
    var oChild=Div1.children(0);	
    Div1.removeChild(oChild);
  }
  catch(x)
  {
    alert("You have already removed the bold element.\nPage will be refreshed when you click OK.")
    document.location.reload();
  }
}
</script>
</head>
<body>
<div id="Div1" onclick="removeElement()">
Click anywhere in this sentence to remove this <strong>Bold</strong> word.
</div>
</body>

 

 

Build date: 2/14/2012