<?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: JavaScript Scripting Essentials</title>
	<atom:link href="http://ajaxian.com/archives/javascript-scripting-essentials/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/javascript-scripting-essentials</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 09 Feb 2012 06:55:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: Tom Sieron</title>
		<link>http://ajaxian.com/archives/javascript-scripting-essentials/comment-page-1#comment-246598</link>
		<dc:creator>Tom Sieron</dc:creator>
		<pubDate>Sat, 27 Jan 2007 12:24:42 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2011#comment-246598</guid>
		<description>Prototype?! Isn&#039;t that about 50+kB large? Plus for all the fun stuff you&#039;d need scriptaculous too, right? Thanks, but I&#039;ll pass. Most of the time I use plain old JS scripts and whenever I want some bells and whistles I use jQuery.</description>
		<content:encoded><![CDATA[<p>Prototype?! Isn&#8217;t that about 50+kB large? Plus for all the fun stuff you&#8217;d need scriptaculous too, right? Thanks, but I&#8217;ll pass. Most of the time I use plain old JS scripts and whenever I want some bells and whistles I use jQuery.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://ajaxian.com/archives/javascript-scripting-essentials/comment-page-1#comment-246220</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Wed, 17 Jan 2007 22:17:31 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2011#comment-246220</guid>
		<description>Prototype ia a MUST! Plus I always inject some additional functions like startsWith(), trim(), normalizeSpaces(),.. for Strings .
And recently I have developed simple JS function createAndSubmitDynamicForm(href) that allow me to use &lt;A HREF - like JSP tags that actually produce HTTP POST :
http://aujava.wordpress.com/2007/01/17/postable-html-links/
Plus sometimes I use Behaviour. Surprisingly enough Sriptaculous is usedonly for unit testing..</description>
		<content:encoded><![CDATA[<p>Prototype ia a MUST! Plus I always inject some additional functions like startsWith(), trim(), normalizeSpaces(),.. for Strings .<br />
And recently I have developed simple JS function createAndSubmitDynamicForm(href) that allow me to use &lt;A HREF &#8211; like JSP tags that actually produce HTTP POST :<br />
<a href="http://aujava.wordpress.com/2007/01/17/postable-html-links/" rel="nofollow">http://aujava.wordpress.com/2007/01/17/postable-html-links/</a><br />
Plus sometimes I use Behaviour. Surprisingly enough Sriptaculous is usedonly for unit testing..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tobie Langel</title>
		<link>http://ajaxian.com/archives/javascript-scripting-essentials/comment-page-1#comment-246145</link>
		<dc:creator>Tobie Langel</dc:creator>
		<pubDate>Tue, 16 Jan 2007 13:34:36 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2011#comment-246145</guid>
		<description>Thomas... wow wow wow! I only contributed the part that makes the morph accept a class name...! I really doubt that makes me into a genius! ;-)</description>
		<content:encoded><![CDATA[<p>Thomas&#8230; wow wow wow! I only contributed the part that makes the morph accept a class name&#8230;! I really doubt that makes me into a genius! ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Aylott</title>
		<link>http://ajaxian.com/archives/javascript-scripting-essentials/comment-page-1#comment-246103</link>
		<dc:creator>Thomas Aylott</dc:creator>
		<pubDate>Mon, 15 Jan 2007 16:25:47 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2011#comment-246103</guid>
		<description>On large projects I use prototype + my personal library. 
For one-off pages or tiny projects I just write pure naked Javascript.
Mootools is starting to look pretty slick. I might end up using that with some of the new stuff I&#039;ll be doing soon.
I might have to steal the new scriptaculous morph function though (Tobie Langel is a genius).</description>
		<content:encoded><![CDATA[<p>On large projects I use prototype + my personal library.<br />
For one-off pages or tiny projects I just write pure naked Javascript.<br />
Mootools is starting to look pretty slick. I might end up using that with some of the new stuff I&#8217;ll be doing soon.<br />
I might have to steal the new scriptaculous morph function though (Tobie Langel is a genius).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kae Verens</title>
		<link>http://ajaxian.com/archives/javascript-scripting-essentials/comment-page-1#comment-246096</link>
		<dc:creator>Kae Verens</dc:creator>
		<pubDate>Mon, 15 Jan 2007 15:45:26 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2011#comment-246096</guid>
		<description>I&#039;m a bit of a &quot;notbuilthere&quot; person. Been building my library since before the names &quot;Prototype&quot; and &quot;Dojo&quot; were known, so it&#039;s not so easy to port my work to use either of those.

My own portables include the standards such as addEvent(), X() and $(), and a load of generally useful functions such as date_m2h(d) (translates MySQL dates to Human-readable), isArray(obj), newNumberRange(from,to,pad) (returns an array of numbers, optionally padded (03,04,05, etc)).

There are about 3 dozen functions I bring around project to project. Those are probably the more interesting ones.</description>
		<content:encoded><![CDATA[<p>I&#8217;m a bit of a &#8220;notbuilthere&#8221; person. Been building my library since before the names &#8220;Prototype&#8221; and &#8220;Dojo&#8221; were known, so it&#8217;s not so easy to port my work to use either of those.</p>
<p>My own portables include the standards such as addEvent(), X() and $(), and a load of generally useful functions such as date_m2h(d) (translates MySQL dates to Human-readable), isArray(obj), newNumberRange(from,to,pad) (returns an array of numbers, optionally padded (03,04,05, etc)).</p>
<p>There are about 3 dozen functions I bring around project to project. Those are probably the more interesting ones.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mario</title>
		<link>http://ajaxian.com/archives/javascript-scripting-essentials/comment-page-1#comment-246091</link>
		<dc:creator>Mario</dc:creator>
		<pubDate>Mon, 15 Jan 2007 14:22:17 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2011#comment-246091</guid>
		<description>@handcoder - looks like somone has a case of the Mondays! I use Prototype as well and some bits n peaces that I have put togeather to compliment it.</description>
		<content:encoded><![CDATA[<p>@handcoder &#8211; looks like somone has a case of the Mondays! I use Prototype as well and some bits n peaces that I have put togeather to compliment it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nir Tayeb</title>
		<link>http://ajaxian.com/archives/javascript-scripting-essentials/comment-page-1#comment-246090</link>
		<dc:creator>Nir Tayeb</dc:creator>
		<pubDate>Mon, 15 Jan 2007 12:48:33 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2011#comment-246090</guid>
		<description>I use MooToools. It&#039;s the best tool for me.</description>
		<content:encoded><![CDATA[<p>I use MooToools. It&#8217;s the best tool for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: handcoder</title>
		<link>http://ajaxian.com/archives/javascript-scripting-essentials/comment-page-1#comment-246089</link>
		<dc:creator>handcoder</dc:creator>
		<pubDate>Mon, 15 Jan 2007 12:40:40 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2011#comment-246089</guid>
		<description>[quote]I normally use prototype. Sometimes with script.aculo.us for some effects![/quote]

too bad that this fat libshit only works in firefox...that fucks up every 10 minutes since the last update. it&#039;s a shame!</description>
		<content:encoded><![CDATA[<p>[quote]I normally use prototype. Sometimes with script.aculo.us for some effects![/quote]</p>
<p>too bad that this fat libshit only works in firefox&#8230;that fucks up every 10 minutes since the last update. it&#8217;s a shame!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Georges</title>
		<link>http://ajaxian.com/archives/javascript-scripting-essentials/comment-page-1#comment-246088</link>
		<dc:creator>Georges</dc:creator>
		<pubDate>Mon, 15 Jan 2007 12:28:09 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2011#comment-246088</guid>
		<description>I normally use prototype. Sometimes with script.aculo.us for some effects!</description>
		<content:encoded><![CDATA[<p>I normally use prototype. Sometimes with script.aculo.us for some effects!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricardo Momm</title>
		<link>http://ajaxian.com/archives/javascript-scripting-essentials/comment-page-1#comment-246085</link>
		<dc:creator>Ricardo Momm</dc:creator>
		<pubDate>Mon, 15 Jan 2007 10:44:11 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2011#comment-246085</guid>
		<description>I use Moo Tools :)</description>
		<content:encoded><![CDATA[<p>I use Moo Tools :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Felix PleÅŸoianu</title>
		<link>http://ajaxian.com/archives/javascript-scripting-essentials/comment-page-1#comment-246082</link>
		<dc:creator>Felix PleÅŸoianu</dc:creator>
		<pubDate>Mon, 15 Jan 2007 07:27:02 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=2011#comment-246082</guid>
		<description>It&#039;s definitely a very small world... http://blog.360.yahoo.com/blog-Vdrx7eU3fqovesPu9Y8Y?p=24</description>
		<content:encoded><![CDATA[<p>It&#8217;s definitely a very small world&#8230; <a href="http://blog.360.yahoo.com/blog-Vdrx7eU3fqovesPu9Y8Y?p=24" rel="nofollow">http://blog.360.yahoo.com/blog-Vdrx7eU3fqovesPu9Y8Y?p=24</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

