<?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: Generic JavaScript functions for generic DOM exploration &#8211; leveraging the JavaScript dyamic function creation</title>
	<atom:link href="http://technology.amis.nl/2007/07/05/generic-javascript-functions-for-generic-dom-exploration-leveraging-the-javascript-dyamic-function-creation/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2007/07/05/generic-javascript-functions-for-generic-dom-exploration-leveraging-the-javascript-dyamic-function-creation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=generic-javascript-functions-for-generic-dom-exploration-leveraging-the-javascript-dyamic-function-creation</link>
	<description></description>
	<lastBuildDate>Fri, 12 Apr 2013 10:04:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Andrea</title>
		<link>http://technology.amis.nl/2007/07/05/generic-javascript-functions-for-generic-dom-exploration-leveraging-the-javascript-dyamic-function-creation/#comment-4757</link>
		<dc:creator>Andrea</dc:creator>
		<pubDate>Tue, 25 Sep 2007 09:01:59 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=2238#comment-4757</guid>
		<description><![CDATA[mhmh
html display problem
I meant that in the function the symbols &lt; and &amp; appear as ampersand codes.]]></description>
		<content:encoded><![CDATA[<p>mhmh<br />
html display problem<br />
I meant that in the function the symbols &lt; and &amp; appear as ampersand codes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrea</title>
		<link>http://technology.amis.nl/2007/07/05/generic-javascript-functions-for-generic-dom-exploration-leveraging-the-javascript-dyamic-function-creation/#comment-4756</link>
		<dc:creator>Andrea</dc:creator>
		<pubDate>Tue, 25 Sep 2007 08:59:29 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=2238#comment-4756</guid>
		<description><![CDATA[Hi Lucas,
about findChildrenWithTagAndCondition():
1) all &quot;&quot; have a bad editing, so appear as &quot;&gt;&quot; and so on.
2) the function seems to allow the parameter tagName as optional:
if(tagname) do this,
else do that
 but in else case, the function still wants tagname few lines after.

did I miss something ?]]></description>
		<content:encoded><![CDATA[<p>Hi Lucas,<br />
about findChildrenWithTagAndCondition():<br />
1) all &#8220;&#8221; have a bad editing, so appear as &#8220;&gt;&#8221; and so on.<br />
2) the function seems to allow the parameter tagName as optional:<br />
if(tagname) do this,<br />
else do that<br />
 but in else case, the function still wants tagname few lines after.</p>
<p>did I miss something ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Jellema</title>
		<link>http://technology.amis.nl/2007/07/05/generic-javascript-functions-for-generic-dom-exploration-leveraging-the-javascript-dyamic-function-creation/#comment-4755</link>
		<dc:creator>Lucas Jellema</dc:creator>
		<pubDate>Thu, 05 Jul 2007 17:24:49 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=2238#comment-4755</guid>
		<description><![CDATA[Jeroen,&lt;br /&gt;
&lt;br /&gt;
Thanks for the tip! I will go and rewrite my code using JQuery. Better do this rightaway before I become attached to my own code. And I like the speed promised with JQuery! (and the fact that it is code that has been tested).&lt;br /&gt;
&lt;br /&gt;
Lucas]]></description>
		<content:encoded><![CDATA[<p>Jeroen,</p>
<p>Thanks for the tip! I will go and rewrite my code using JQuery. Better do this rightaway before I become attached to my own code. And I like the speed promised with JQuery! (and the fact that it is code that has been tested).</p>
<p>Lucas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeroen van Wilgenburg</title>
		<link>http://technology.amis.nl/2007/07/05/generic-javascript-functions-for-generic-dom-exploration-leveraging-the-javascript-dyamic-function-creation/#comment-4754</link>
		<dc:creator>Jeroen van Wilgenburg</dc:creator>
		<pubDate>Thu, 05 Jul 2007 16:46:53 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=2238#comment-4754</guid>
		<description><![CDATA[Have you looked into jQuery? I&#039;m afraid you rewrote some of the jQuery functions.

Code sample 1 (http://docs.jquery.com/DOM/Traversing):
Find an Elementâ€™s Ancestor of a specific type (tag):
 $(&quot;span&quot;).parents(&quot;p&quot;)
Find all parent elements of each span that is a paragraph.

For the second sample you can use
find(expr) (though I&#039;m not sure about that, but I think it can do what you want)

For showing and hiding you can use show() and hide():
 $(&quot;p&quot;).show() will hide all &#039;s

jQuery is a really great Javascript library and is only 20KB. Ajaxian recently pointed to an article to show that jQuery also is one of the fastests libraries out there:
http://ajaxian.com/archives/jquery-113-800-faster-still-20kb
It&#039;s usually more efficient to write your own methods (you only write what you need), but I think it&#039;s very hard to write faster code than jQuery.

But still a very nice article, seems I&#039;m not the only Mr. Dojo at AMIS ;-)]]></description>
		<content:encoded><![CDATA[<p>Have you looked into jQuery? I&#8217;m afraid you rewrote some of the jQuery functions.</p>
<p>Code sample 1 (<a href="http://docs.jquery.com/DOM/Traversing" rel="nofollow">http://docs.jquery.com/DOM/Traversing</a>):<br />
Find an Elementâ€™s Ancestor of a specific type (tag):<br />
 $(&#8220;span&#8221;).parents(&#8220;p&#8221;)<br />
Find all parent elements of each span that is a paragraph.</p>
<p>For the second sample you can use<br />
find(expr) (though I&#8217;m not sure about that, but I think it can do what you want)</p>
<p>For showing and hiding you can use show() and hide():<br />
 $(&#8220;p&#8221;).show() will hide all &#8216;s</p>
<p>jQuery is a really great Javascript library and is only 20KB. Ajaxian recently pointed to an article to show that jQuery also is one of the fastests libraries out there:<br />
<a href="http://ajaxian.com/archives/jquery-113-800-faster-still-20kb" rel="nofollow">http://ajaxian.com/archives/jquery-113-800-faster-still-20kb</a><br />
It&#8217;s usually more efficient to write your own methods (you only write what you need), but I think it&#8217;s very hard to write faster code than jQuery.</p>
<p>But still a very nice article, seems I&#8217;m not the only Mr. Dojo at AMIS <img src='http://technology.amis.nl/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
