<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Remove HTML Elements Dynamically</title>
	<atom:link href="http://redinkdesign.net/programming/remove-html-elements-dynamically/feed/" rel="self" type="application/rss+xml" />
	<link>http://redinkdesign.net/programming/remove-html-elements-dynamically/</link>
	<description>Good code is its own best documentation</description>
	<lastBuildDate>Sat, 07 Jan 2012 23:03:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: SunboX</title>
		<link>http://redinkdesign.net/programming/remove-html-elements-dynamically/comment-page-1/#comment-17</link>
		<dc:creator>SunboX</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-17</guid>
		<description>function removeElement(elementId)
{
		var itemToBeRemoved = document.getElementById(elementId);
		var parent = itemToBeRemoved.parentNode;
		parent.removeChild(itemToBeRemoved);
		itemToBeRemoved = null; // make sure it will be garbage collected
};</description>
		<content:encoded><![CDATA[<p>function removeElement(elementId)<br />
{<br />
		var itemToBeRemoved = document.getElementById(elementId);<br />
		var parent = itemToBeRemoved.parentNode;<br />
		parent.removeChild(itemToBeRemoved);<br />
		itemToBeRemoved = null; // make sure it will be garbage collected<br />
};</p>
]]></content:encoded>
	</item>
</channel>
</rss>

