<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Prototype.js != $()</title>
	<atom:link href="http://abcdefu.wordpress.com/2006/12/27/prototypejs/feed/" rel="self" type="application/rss+xml" />
	<link>http://abcdefu.wordpress.com/2006/12/27/prototypejs/</link>
	<description>i couldn&#039;t think of better name for this blog...</description>
	<lastBuildDate>Tue, 22 Dec 2009 13:31:13 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: hanum</title>
		<link>http://abcdefu.wordpress.com/2006/12/27/prototypejs/#comment-1744</link>
		<dc:creator>hanum</dc:creator>
		<pubDate>Tue, 13 Oct 2009 14:20:50 +0000</pubDate>
		<guid isPermaLink="false">http://abcdefu.wordpress.com/2006/12/27/prototypejs/#comment-1744</guid>
		<description>wow.. great posting. Thank&#039;s for knowledge sharing. Nice to know you ^_^</description>
		<content:encoded><![CDATA[<p>wow.. great posting. Thank&#8217;s for knowledge sharing. Nice to know you ^_^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://abcdefu.wordpress.com/2006/12/27/prototypejs/#comment-1730</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Thu, 17 Sep 2009 06:35:29 +0000</pubDate>
		<guid isPermaLink="false">http://abcdefu.wordpress.com/2006/12/27/prototypejs/#comment-1730</guid>
		<description>Meeh, my cool HTML code got filtered out ;(
See this link: http://en.wikipedia.org/wiki/Script.aculo.us#Usage</description>
		<content:encoded><![CDATA[<p>Meeh, my cool HTML code got filtered out ;(<br />
See this link: <a href="http://en.wikipedia.org/wiki/Script.aculo.us#Usage" rel="nofollow">http://en.wikipedia.org/wiki/Script.aculo.us#Usage</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://abcdefu.wordpress.com/2006/12/27/prototypejs/#comment-1729</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Thu, 17 Sep 2009 06:34:14 +0000</pubDate>
		<guid isPermaLink="false">http://abcdefu.wordpress.com/2006/12/27/prototypejs/#comment-1729</guid>
		<description>I did not see anyone write about Google&#039;s geographical serving of prototype and script.aculo.us, just use those lines:



Using this method, size and loading times are ( most likely ) not a problem. Have the user already done a hit on a page using this method before it will be in their cache.

Now somebody might say that it&#039;s bad to rely entirely on Google; If the ( most unlikely ) event happens and Google fails to serve those scripts you can do it yourself like this:
if(typeof($)==&#039;undefined&#039;){document.write(&#039;&#039;);

And finally, it actually really surprises me that you finds that most people don&#039;t use the many functions of prototype when included :-O

For simpler things I write the code with plain JavaScript. For more complex task, I really enjoy prototype-js framework.

Well, now I&#039;m gonna write a Movie player with subtext, using script.aculo.us, prototype-js and SoundManger 2 ;D</description>
		<content:encoded><![CDATA[<p>I did not see anyone write about Google&#8217;s geographical serving of prototype and script.aculo.us, just use those lines:</p>
<p>Using this method, size and loading times are ( most likely ) not a problem. Have the user already done a hit on a page using this method before it will be in their cache.</p>
<p>Now somebody might say that it&#8217;s bad to rely entirely on Google; If the ( most unlikely ) event happens and Google fails to serve those scripts you can do it yourself like this:<br />
if(typeof($)==&#8217;undefined&#8217;){document.write(&#8221;);</p>
<p>And finally, it actually really surprises me that you finds that most people don&#8217;t use the many functions of prototype when included :-O</p>
<p>For simpler things I write the code with plain JavaScript. For more complex task, I really enjoy prototype-js framework.</p>
<p>Well, now I&#8217;m gonna write a Movie player with subtext, using script.aculo.us, prototype-js and SoundManger 2 ;D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marcu</title>
		<link>http://abcdefu.wordpress.com/2006/12/27/prototypejs/#comment-1285</link>
		<dc:creator>marcu</dc:creator>
		<pubDate>Wed, 18 Mar 2009 20:15:52 +0000</pubDate>
		<guid isPermaLink="false">http://abcdefu.wordpress.com/2006/12/27/prototypejs/#comment-1285</guid>
		<description>for only an ajax pourpose, i found it http://code.google.com/p/microajax/ ;)</description>
		<content:encoded><![CDATA[<p>for only an ajax pourpose, i found it <a href="http://code.google.com/p/microajax/" rel="nofollow">http://code.google.com/p/microajax/</a> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: boecko</title>
		<link>http://abcdefu.wordpress.com/2006/12/27/prototypejs/#comment-978</link>
		<dc:creator>boecko</dc:creator>
		<pubDate>Mon, 18 Aug 2008 15:27:15 +0000</pubDate>
		<guid isPermaLink="false">http://abcdefu.wordpress.com/2006/12/27/prototypejs/#comment-978</guid>
		<description>@sjarkie

you example is flawed:
$(’someDiv’).style.display = ‘block’;
$(’someDiv’).style.top = ‘10px’;
$(’someDiv’).style.left = ‘10px’;

this can be written as:
$(&#039;someDiv&#039;).setStyle({display: &#039;block&#039;, top: &#039;10px&#039;, left: &#039;10px&#039;});

which is much more elegant.

see http://prototypejs.org/api/element/setStyle</description>
		<content:encoded><![CDATA[<p>@sjarkie</p>
<p>you example is flawed:<br />
$(’someDiv’).style.display = ‘block’;<br />
$(’someDiv’).style.top = ‘10px’;<br />
$(’someDiv’).style.left = ‘10px’;</p>
<p>this can be written as:<br />
$(&#8217;someDiv&#8217;).setStyle({display: &#8216;block&#8217;, top: &#8216;10px&#8217;, left: &#8216;10px&#8217;});</p>
<p>which is much more elegant.</p>
<p>see <a href="http://prototypejs.org/api/element/setStyle" rel="nofollow">http://prototypejs.org/api/element/setStyle</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jm</title>
		<link>http://abcdefu.wordpress.com/2006/12/27/prototypejs/#comment-955</link>
		<dc:creator>jm</dc:creator>
		<pubDate>Thu, 10 Jul 2008 15:53:53 +0000</pubDate>
		<guid isPermaLink="false">http://abcdefu.wordpress.com/2006/12/27/prototypejs/#comment-955</guid>
		<description>Have you considered the benefits of browser-abstraction?  In your example, how many more lines of code would it take to be completely cross-browser compatible?

If the answer is &#039;none&#039;, then that is an over-simplified example for which prototype is not intended.

How about giving an example on the scale of, say, Facebook.</description>
		<content:encoded><![CDATA[<p>Have you considered the benefits of browser-abstraction?  In your example, how many more lines of code would it take to be completely cross-browser compatible?</p>
<p>If the answer is &#8216;none&#8217;, then that is an over-simplified example for which prototype is not intended.</p>
<p>How about giving an example on the scale of, say, Facebook.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cwmao</title>
		<link>http://abcdefu.wordpress.com/2006/12/27/prototypejs/#comment-923</link>
		<dc:creator>cwmao</dc:creator>
		<pubDate>Thu, 19 Jun 2008 12:23:26 +0000</pubDate>
		<guid isPermaLink="false">http://abcdefu.wordpress.com/2006/12/27/prototypejs/#comment-923</guid>
		<description>Thanks! But... I have already save down all the API pages to my laptop, lol, one by one!</description>
		<content:encoded><![CDATA[<p>Thanks! But&#8230; I have already save down all the API pages to my laptop, lol, one by one!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
