<?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: Converting from Prototype to jQuery</title>
	<atom:link href="http://blog.perplexedlabs.com/2008/11/16/converting-from-prototype-to-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.perplexedlabs.com/2008/11/16/converting-from-prototype-to-jquery/</link>
	<description>web development war stories from the frontlines to the backend</description>
	<lastBuildDate>Fri, 30 Jul 2010 00:38:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Rick</title>
		<link>http://blog.perplexedlabs.com/2008/11/16/converting-from-prototype-to-jquery/comment-page-1/#comment-2736</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Thu, 20 Aug 2009 09:21:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.perplexedlabs.com/?p=68#comment-2736</guid>
		<description>someone should make a tool to convert from one library to another....</description>
		<content:encoded><![CDATA[<p>someone should make a tool to convert from one library to another&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick</title>
		<link>http://blog.perplexedlabs.com/2008/11/16/converting-from-prototype-to-jquery/comment-page-1/#comment-2681</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Thu, 20 Aug 2009 05:21:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.perplexedlabs.com/?p=68#comment-2681</guid>
		<description>someone should make a tool to convert from one library to another....</description>
		<content:encoded><![CDATA[<p>someone should make a tool to convert from one library to another&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ruby, Rails, Web2.0 &#187; Blog Archive &#187; Thinking About Switching to jQuery?</title>
		<link>http://blog.perplexedlabs.com/2008/11/16/converting-from-prototype-to-jquery/comment-page-1/#comment-383</link>
		<dc:creator>Ruby, Rails, Web2.0 &#187; Blog Archive &#187; Thinking About Switching to jQuery?</dc:creator>
		<pubDate>Sat, 06 Dec 2008 11:57:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.perplexedlabs.com/?p=68#comment-383</guid>
		<description>[...] Converting fromPrototype to jQuery - thanks for the find goes to Yury Tsukerman [...]</description>
		<content:encoded><![CDATA[<p>[...] Converting fromPrototype to jQuery &#8211; thanks for the find goes to Yury Tsukerman [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2008-11-18 &#171; Brent Sordyl&#8217;s Blog</title>
		<link>http://blog.perplexedlabs.com/2008/11/16/converting-from-prototype-to-jquery/comment-page-1/#comment-245</link>
		<dc:creator>links for 2008-11-18 &#171; Brent Sordyl&#8217;s Blog</dc:creator>
		<pubDate>Tue, 18 Nov 2008 14:01:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.perplexedlabs.com/?p=68#comment-245</guid>
		<description>[...] Converting from Prototype to jQuery During the conversion process I found it to be most helpful to load jQuery side by side with Prototype using jQuery’s no-conflict functionality. As I slowly combed through my JavaScript removing Prototype dependencies I would periodically remove Prototype to see if and where I missed any outliers. This also requires you to use the jQuery() syntax as opposed to the traditional $() syntax. In doing so this helps easily identify where Prototype code remains. (tags: jQuery prototype ajax) [...]</description>
		<content:encoded><![CDATA[<p>[...] Converting from Prototype to jQuery During the conversion process I found it to be most helpful to load jQuery side by side with Prototype using jQuery’s no-conflict functionality. As I slowly combed through my JavaScript removing Prototype dependencies I would periodically remove Prototype to see if and where I missed any outliers. This also requires you to use the jQuery() syntax as opposed to the traditional $() syntax. In doing so this helps easily identify where Prototype code remains. (tags: jQuery prototype ajax) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Coderholic</title>
		<link>http://blog.perplexedlabs.com/2008/11/16/converting-from-prototype-to-jquery/comment-page-1/#comment-243</link>
		<dc:creator>Coderholic</dc:creator>
		<pubDate>Mon, 17 Nov 2008 21:44:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.perplexedlabs.com/?p=68#comment-243</guid>
		<description>Useful guide, thanks. I&#039;ve also written an article on converting Ext to jQuery (http://www.coderholic.com/converting-ext-to-jquery/) - soon we&#039;ll have everyone using jQuery! :)</description>
		<content:encoded><![CDATA[<p>Useful guide, thanks. I&#8217;ve also written an article on converting Ext to jQuery (<a href="http://www.coderholic.com/converting-ext-to-jquery/" rel="nofollow">http://www.coderholic.com/converting-ext-to-jquery/</a>) &#8211; soon we&#8217;ll have everyone using jQuery! :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://blog.perplexedlabs.com/2008/11/16/converting-from-prototype-to-jquery/comment-page-1/#comment-242</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Mon, 17 Nov 2008 20:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.perplexedlabs.com/?p=68#comment-242</guid>
		<description>I&#039;m not sure your code is coming through properly.

What I meant was I DON&#039;T like using HTML snippets in my JavaScript source to create elements on the fly.  I prefer Prototype&#039;s Element approach where things are done more programatically via parameter passing.  Perhaps it&#039;s due to my past experience using Prototype?</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure your code is coming through properly.</p>
<p>What I meant was I DON&#8217;T like using HTML snippets in my JavaScript source to create elements on the fly.  I prefer Prototype&#8217;s Element approach where things are done more programatically via parameter passing.  Perhaps it&#8217;s due to my past experience using Prototype?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan</title>
		<link>http://blog.perplexedlabs.com/2008/11/16/converting-from-prototype-to-jquery/comment-page-1/#comment-241</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Mon, 17 Nov 2008 19:48:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.perplexedlabs.com/?p=68#comment-241</guid>
		<description>Sorry, my code example was totally butchered, as it parsed the HTML I included in the example. Should be:

&lt;code&gt;
$(&#039;This is a DOM element&#039;).appendTo(&#039;&#039;);
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Sorry, my code example was totally butchered, as it parsed the HTML I included in the example. Should be:</p>
<p><code><br />
$('This is a DOM element').appendTo('');<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan</title>
		<link>http://blog.perplexedlabs.com/2008/11/16/converting-from-prototype-to-jquery/comment-page-1/#comment-240</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Mon, 17 Nov 2008 19:46:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.perplexedlabs.com/?p=68#comment-240</guid>
		<description>Great points, all. I found myself nodding in agreement with all of your initial points, which I found characterized Mootools&#039;s approach, as well.

But re: DOM element creation, I&#039;m not sure I understand your need. I&#039;m sure you know the $() factory method will create as well as select, right? So:

$(&#039;This is a DOM element&#039;&#039;).appendTo(&#039;&#039;);

Generates HTML on the fly...</description>
		<content:encoded><![CDATA[<p>Great points, all. I found myself nodding in agreement with all of your initial points, which I found characterized Mootools&#8217;s approach, as well.</p>
<p>But re: DOM element creation, I&#8217;m not sure I understand your need. I&#8217;m sure you know the $() factory method will create as well as select, right? So:</p>
<p>$(&#8216;This is a DOM element&#8221;).appendTo(&#8221;);</p>
<p>Generates HTML on the fly&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://blog.perplexedlabs.com/2008/11/16/converting-from-prototype-to-jquery/comment-page-1/#comment-239</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Mon, 17 Nov 2008 18:03:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.perplexedlabs.com/?p=68#comment-239</guid>
		<description>Interesting, thanks!</description>
		<content:encoded><![CDATA[<p>Interesting, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anatoli Papirovski</title>
		<link>http://blog.perplexedlabs.com/2008/11/16/converting-from-prototype-to-jquery/comment-page-1/#comment-238</link>
		<dc:creator>Anatoli Papirovski</dc:creator>
		<pubDate>Mon, 17 Nov 2008 17:05:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.perplexedlabs.com/?p=68#comment-238</guid>
		<description>Nice article. Just a quick note. It&#039;s, IMO, easier to do:

if ($(&#039;#welcome_message&#039;)[0])

which tests whether there&#039;s an element in the array or not and it works when the length is greater than 0. Hasn&#039;t failed me yet and I&#039;ve worked on several major projects using jQuery.</description>
		<content:encoded><![CDATA[<p>Nice article. Just a quick note. It&#8217;s, IMO, easier to do:</p>
<p>if ($(&#8216;#welcome_message&#8217;)[0])</p>
<p>which tests whether there&#8217;s an element in the array or not and it works when the length is greater than 0. Hasn&#8217;t failed me yet and I&#8217;ve worked on several major projects using jQuery.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
