<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DZone Snippets: removeChild code</title>
    <link>http://snippets.dzone.com/posts</link>
    <pubDate>Sun, 27 Jul 2008 07:40:28 GMT</pubDate>
    <description>DZone Snippets: removeChild code</description>
    <item>
      <title>Use DHTML to remove an element.</title>
      <link>http://snippets.dzone.com/posts/show/5800</link>
      <description>This JavaScript snippet removes an HTML element from it's parent node.&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;    list_row = document.getElementById('record' + id);&lt;br /&gt;    list_row.parentNode.removeChild(list_row);&lt;br /&gt;&lt;/code&gt;</description>
      <pubDate>Sun, 20 Jul 2008 18:00:24 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/5800</guid>
      <author>jrobertson (James Robertson)</author>
    </item>
    <item>
      <title>javascript - dom method for removing nodes</title>
      <link>http://snippets.dzone.com/posts/show/2598</link>
      <description>You can remove existing nodes as well as add new ones. The removeChild method allows any node to remove one of its child nodes. Simply pass a reference to the node you wish to remove. Any text or elements within the node being removed will be removed along with it.&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;script type="text/javascript"&gt;&lt;br /&gt;&lt;br /&gt;function removeBElm(){&lt;br /&gt;&lt;br /&gt;    var para = document.getElementById("example2");&lt;br /&gt;&lt;br /&gt;    var boldElm = document.getElementById("example2B");&lt;br /&gt;&lt;br /&gt;    var removed = para.removeChild(boldElm);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;p id="example2"&gt;&lt;a href="#" onclick="removeBElm(); return false;"&gt;Click this link&lt;/a&gt; to see the above script in action.&lt;/p&gt;&lt;br /&gt;&lt;/code&gt;</description>
      <pubDate>Fri, 15 Sep 2006 22:50:11 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/2598</guid>
      <author>bradalyst (brad)</author>
    </item>
  </channel>
</rss>
