<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Weber Report &#187; Javascript</title>
	<atom:link href="http://www.dustinweber.com/category/web-development/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dustinweber.com</link>
	<description>Dustin Weber's Take On Web Development &#038; Other Random Diversions.</description>
	<lastBuildDate>Wed, 13 Jul 2011 05:02:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>E4X: Explaining ECMAscript for XML</title>
		<link>http://www.dustinweber.com/main-page/e4x-explaining-ecmascript-for-xml/</link>
		<comments>http://www.dustinweber.com/main-page/e4x-explaining-ecmascript-for-xml/#comments</comments>
		<pubDate>Sun, 09 Sep 2007 05:32:37 +0000</pubDate>
		<dc:creator>Dustin Weber</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Main Page]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://dustinweber.com/uncategorized/e4x-explaining-ecmascript-for-xml/</guid>
		<description><![CDATA[Right at this very moment, I had a thought cross my mind. If I wanted to use Javascript to modify XML on the fly, how in the heck would I make that happen? I think the answer is E4X, which is short for &#8220;ECMAscript for XML&#8221;. I tried to explain it in my own words [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://dustinweber.com/wp-content/uploads/2007/09/javascript-loves-xml.gif" title="Javascript Loves XML" alt="Javascript Loves XML" align="left" />Right at this very moment, I had a thought cross my mind.  If I wanted to use Javascript to modify XML on the fly, how in the heck would I make that happen?</p>
<p>I think the answer is E4X, which is short for &#8220;ECMAscript for XML&#8221;.  I tried to explain it in my own words several times, but I decided <a href="http://en.wikipedia.org/wiki/E4x" target="_blank">Wikipedia</a> does it better:</p>
<blockquote><p><em>&#8220;ECMAScript for XML (E4X) is a programming language extension that adds native XML support to ECMAScript (which includes ActionScript, DMDScript, JavaScript, JScript).  It does this by providing access to the XML document in a form that mimics XML syntax. The goal is to provide an alternative to DOM interfaces that uses a simpler syntax for accessing XML documents.  It also offers a new way of making XML visible. Before the release of E4X, XML was always accessed at an object level.  E4X instead treats XML as a primitive (like characters, integers, and booleans).  This implies faster access, better support, and acceptance as a building block (data structure) of a program.&#8221;</em></p></blockquote>
<p>So, a powerful use, suggested <a href="http://www.dashes.com/anil/2005/09/web-development-trends-for-200.html?text=1" target="_blank">here</a>, would be building a form dynamically like this:</p>
<blockquote><p>var html = &lt;html/&gt;;<br />
html.head.title = &#8220;Hello, World.&#8221;;<br />
html.body.form.@name = &#8220;hello&#8221;;<br />
html.body.form.@action = &#8220;test.php&#8221;;<br />
html.body.form.@method = &#8220;post&#8221;;<br />
html.body.form.@onclick = &#8220;return foo();&#8221;;<br />
html.body.form.input[0] = &#8220;&#8221;;<br />
html.body.form.input[0].@name = &#8220;Submit&#8221;;</p></blockquote>
<p>Pretty slick, I must admit.  Anyways, I&#8217;m willing to bet we&#8217;ll be hearing more about this new technology soon as it gains traction in an area that needs some work.</p>
<p>For more information, see <a href="http://www.ecma-international.org/publications/standards/Ecma-357.htm" target="_blank">this</a> and <a href="http://weblog.infoworld.com/udell/2004/09/29.html" target="_blank">this</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dustinweber.com/main-page/e4x-explaining-ecmascript-for-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	<!-- google ad injected by adsense-optimizer http://wordpress.losmuchachos.at/adsenseoptimizer -->
			<div  style="padding:5px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><script type="text/javascript"><!-- 
    	google_ad_client = "pub-3337807343833598"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel ="7973208468"; google_color_border = "336699";
		google_color_link = "0000FF"; google_color_bg = "FFFFFF";
		google_color_text = "000000"; google_color_url = "008000";
		google_ui_features = "rc:6"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>JQuery: The Best Javascript Library?</title>
		<link>http://www.dustinweber.com/web-development/jquery-the-best-javascript-library/</link>
		<comments>http://www.dustinweber.com/web-development/jquery-the-best-javascript-library/#comments</comments>
		<pubDate>Wed, 22 Aug 2007 02:01:40 +0000</pubDate>
		<dc:creator>Dustin Weber</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://dustinweber.com/web-development/javascript/jquery-the-best-javascript-library/</guid>
		<description><![CDATA[After stumbling across this article, I was in awe to see what has recently transpired in the world of Javascript libraries/frameworks.Â  I had recently fell in love with Yahoo UI, but I was truly surprised to see that jQuery has gained remarkable traction in the market. According to This Google Trend, it has leaped far [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jquery.com/" title="jQuery Main Web Site" target="_blank"><img src="http://dustinweber.com/wp-content/uploads/2007/08/j-query-logo.jpg" title="JQuery Logo" alt="JQuery Logo" align="left" /></a>After stumbling across <a href="http://www.thespanner.co.uk/2007/07/16/web-development-trends-estimation/" title="Web Development Trends Estimation Article" target="_blank">this</a> article, I was in awe to see what has recently transpired in the world of Javascript libraries/frameworks.Â  I had recently fell in love with <a href="http://developer.yahoo.com/yui/" title="Yahoo UI Main Web Site" target="_blank">Yahoo UI</a>, but I was truly surprised to see that <a href="http://jquery.com/" title="jQuery Main Web Site" target="_blank">jQuery</a> has gained remarkable traction in the market.</p>
<p>According to <a href="http://www.google.com/trends?q=JQuery%2Cscriptaculous%2Cdojo+toolkit%2CYUI+yahoo%2CExt+js&amp;ctab=0&amp;geo=all&amp;date=all&amp;sort=0" title="Google Trends - Javascript Comparison" target="_blank">This Google Trend</a>, it has leaped far ahead of even <a href="http://script.aculo.us/" title="Scriptaculous Main Web Site" target="_blank">script.aculo.us</a> in raw search volume.Â  This is a particulary good sign for jQuery.Â  As search volume increases, so will the number of pages related to jQuery obviously and vice versa.</p>
<p>In my experience, rapidly growing popularity is usually a pretty good sign of success for an open-source project.Â  If problems exist with the project, usually the overwhelming interest helps to spur on solutions and increase the capability of the product because of the massive interest.Â  I&#8217;ve seen this same trend previously with with <a href="http://www.cakephp.org" title="CakePHP Main Web Site" target="_blank">CakePHP</a>, an excellent framework alternative for <a href="http://www.php.net" title="PHP Main Web Site" target="_blank">PHP</a> based loosely off of <a href="http://www.rubyonrails.org/" title="Ruby on Rails Main Web Site" target="_blank">Ruby on Rails</a>.</p>
<p>Regardless, it appears that I will start learning jQuery.Â  Even if it turns out to lose the &#8220;battle&#8221;, it can&#8217;t help to learn more about advanced javascript without being forced to climb a steep learning curve.</p>
<p>Any truthfully, if this popularity trend continues, I think it&#8217;s safe to say jQuery is here to stay.</p>
<p><a href="http://jquery.com/" title="jQuery Main Web Site" target="_blank">jQuery.com</a> if interested.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dustinweber.com/web-development/jquery-the-best-javascript-library/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>CSS Speech Bubbles</title>
		<link>http://www.dustinweber.com/main-page/css-speech-bubbles/</link>
		<comments>http://www.dustinweber.com/main-page/css-speech-bubbles/#comments</comments>
		<pubDate>Mon, 12 Feb 2007 08:29:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS & HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Main Page]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://dustinweber.com/?p=1247</guid>
		<description><![CDATA[Came across a pretty neat little CSS trinket this afternoon on del.icio.us. It provides a very simple, yet powerful way to generate &#8220;CSS Speech Bubbles&#8220;. It does use a bit of Javascript (25K &#8211; Yikes!) which confuses me because that really makes this thing, &#8220;Javascript/CSS Speech Bubbles&#8221;, doesn&#8217;t it? However, I&#8217;m guessing the Javascript was [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://dustinweber.com/wp-content/uploads/2007/06/bubble-comments.gif" title="bubble-comments.gif" alt="bubble-comments.gif" align="left" height="130" width="180" />Came across a pretty neat little CSS trinket this afternoon on <a href="http://del.icio.us/" target="_blank">del.icio.us</a>.</p>
<p>It provides a very simple, yet powerful way to generate &#8220;<a href="http://www.willmayo.com/2007/02/10/css-speech-bubbles/" target="_blank">CSS Speech Bubbles</a>&#8220;.  It does use a bit of Javascript (25K &#8211; Yikes!) which confuses me because that really makes this thing, &#8220;Javascript/CSS Speech Bubbles&#8221;, doesn&#8217;t it?</p>
<p>However, I&#8217;m guessing the Javascript was used to make the code cleaner (and probably validate properly).</p>
<p>With that being said, still seems a tad hokey to me, but I suppose the project could nonetheless be useful in some instances.  Too bad I don&#8217;t really have a use for &#8216;Speech Bubbles&#8217; right now&#8230; maybe someday.</p>
<p>You can see original site here: <a href="http://www.willmayo.com/2007/02/10/css-speech-bubbles/" target="_blank">CSS Speech Bubbles</a> or just <a href="http://www.willmayo.com/journal/projects/07/bubbles/download.zip">download the package directly</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dustinweber.com/main-page/css-speech-bubbles/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	<!-- google ad injected by adsense-optimizer http://wordpress.losmuchachos.at/adsenseoptimizer -->
			<div  style="padding:5px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><script type="text/javascript"><!-- 
    	google_ad_client = "pub-3337807343833598"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel ="7973208468"; google_color_border = "336699";
		google_color_link = "0000FF"; google_color_bg = "FFFFFF";
		google_color_text = "000000"; google_color_url = "008000";
		google_ui_features = "rc:6"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>Javascript WYSIWYG Solutions: Excel &amp; Word On The Web</title>
		<link>http://www.dustinweber.com/main-page/javascript-wysiwyg-solutions-excel-word-on-the-web/</link>
		<comments>http://www.dustinweber.com/main-page/javascript-wysiwyg-solutions-excel-word-on-the-web/#comments</comments>
		<pubDate>Sun, 07 Jan 2007 04:18:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Main Page]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://dustinweber.com/?p=1234</guid>
		<description><![CDATA[I was recently presented with two projects at work that offered me a good opportunity to delve into the &#39;scary&#39; world of Javascript WYSIWYG (what you see is what you get) content editors for the web.&#160; Normally, I try to avoid Javascript like the plague, but lately with the advent of AJAX and Javascript effect [...]]]></description>
			<content:encoded><![CDATA[<p><img style="width: 125px; height: 88px;" src="http://www.dustinweber.com/_photos/question-mark15161.jpg" align="left">I was recently presented with two projects at work that offered me a good opportunity to delve into the &#39;scary&#39; world of <a href="http://en.wikipedia.org/wiki/Javascript" target="_blank">Javascript</a> <a href="http://en.wikipedia.org/wiki/Wysiwyg" target="_blank">WYSIWYG</a> (what you see is what you get) content editors for the web.&nbsp; </p>
<p>Normally, I try to avoid Javascript like the plague, but lately with the advent of <a href="http://en.wikipedia.org/wiki/Ajax" target="_blank">AJAX</a> and <a href="http://www.dustinweber.com/blog/_archives/2006/11/20/2515182.html">Javascript effect packages</a>, I&#39;m feeling a bit more used to it.</p>
<p>In this case, I needed two specific and diverse solutions to a few problems I had.<br /><br style="font-weight: bold;"><span style="font-weight: bold;">Problem 1</span>: I needed a way to embed an editable spreadsheet in a web page without any special plug-ins or proprietary <a href="http://en.wikipedia.org/wiki/Microsoft" target="_blank">Microsoft</a> scripts.&nbsp; In basic terms: a web spreadsheet application.</p>
<p><a href="http://codethat.com/grid/index.html" target="_blank"><img style="width: 328px; height: 227px;" src="http://www.dustinweber.com/_photos/code-that-grid.png" align="left"></a><span style="font-style: italic;">Solution</span>:&nbsp; <a href="http://codethat.com/" target="_blank">CodeThat</a>, a small venture heralding from the <a href="http://en.wikipedia.org/wiki/Ukraine" target="_blank">Ukraine</a> offers a powerful, simple, and easy to configure all-in-one solution called <a href="http://codethat.com/grid/index.html" target="_blank">CodeThatGrid</a>.&nbsp; </p>
<p>The power of this software is it&#39;s simple ability to allow any web user access to a simplistic replica of <a href="http://en.wikipedia.org/wiki/Microsoft_Excel" target="_blank">Microsoft Excel</a>.&nbsp; It closely resembles Microsoft&#39;s product in form and function, so there isn&#39;t much of a learning curve.&nbsp; Best of all, it&#39;s relatively lightweight size-wise and seems to have a robust feature-set.&nbsp; Overall, I think it&#39;s a great solution for a tough problem.&nbsp; </p>
<p><span style="font-weight: bold;">Problem 2</span>: I needed a simple yet powerful text editor that would allow a user to post content to the web without the need to know any html or any knowledge beyond <a href="http://en.wikipedia.org/wiki/Microsoft_word" target="_blank">Microsoft Word</a>.&nbsp; In basic terms: an advanced rich text editor.</p>
<p><span style="font-style: italic;"><a href="http://tinymce.moxiecode.com/index.php" target="_blank"><img src="http://www.dustinweber.com/_photos/tinymce.gif" align="left"></a>Solution</span>:&nbsp; After lot&#39;s of research, <a href="http://tinymce.moxiecode.com/" target="_blank">Moxiecode&#39;s TinyMCE</a> seemed to have the easiest to use and most robustly supported Rich Text Editor I could find at this time.&nbsp; </p>
<p>When fully decked out, this thing looks almost exactly like Microsoft Word&#8230; and has almost all of the features.&nbsp; Some highlights: real-time spell checking, table support, image insertion (even an optional file/image management system), a fully-compliant gzip compressor, and support for <a href="http://en.wikipedia.org/wiki/Php" target="_blank">PHP</a>, <a href="http://en.wikipedia.org/wiki/JavaServer_Pages" target="_blank">JSP</a>, <a href="http://en.wikipedia.org/wiki/.net" target="_blank">.NET</a>, and <a href="http://en.wikipedia.org/wiki/Coldfusion" target="_blank">Coldfusion</a>.&nbsp; It works well and I&#39;m thoroughly impressed by the wide range of plug-ins and options available for the software.</p>
<p>So, remember to check them out if you have a need for some powerful WYSIWYG tools for your next web project.&nbsp; And no, neither one of these companies paid me for this review.&nbsp; I truly just like them a lot!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dustinweber.com/main-page/javascript-wysiwyg-solutions-excel-word-on-the-web/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A Simple Replacement For Script.aculo.us: Rico</title>
		<link>http://www.dustinweber.com/main-page/a-simple-replacement-for-scriptaculous-rico/</link>
		<comments>http://www.dustinweber.com/main-page/a-simple-replacement-for-scriptaculous-rico/#comments</comments>
		<pubDate>Tue, 21 Nov 2006 05:09:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS & HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Main Page]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://dustinweber.com/?p=1211</guid>
		<description><![CDATA[Just a quick hint for all you web developers out there in the world.&#160; The past week I have been struggling to implement a few draggable items and some accordion action on a project I&#39;ve been working on at work.&#160; I found that Script.aculo.us is still a bit buggy in this department.&#160; I stumbled across [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://openrico.org" target="_blank"><img src="http://www.dustinweber.com/_photos/rico.gif" align="left"></a>Just a quick hint for all you web developers out there in the world.&nbsp; </p>
<p>The past week I have been struggling to implement a few draggable items and some accordion action on a project I&#39;ve been working on at work.&nbsp; </p>
<p>I found that <a href="http://script.aculo.us/" target="_blank">Script.aculo.us</a> is still a bit buggy in this department.&nbsp; I stumbled across another similar effects/utility library that seems to work a lot better, is a bit lighter on file size, and seems to be a tad easier to implement (at least away from a <a href="http://en.wikipedia.org/wiki/Ruby_on_rails" target="_blank">Ruby on Rails</a> platform).&nbsp; </p>
<p>It&#39;s called <a href="http://openrico.org/" target="_blank">Rico</a> and it&#39;s quite nice. </p>
<p><a href="http://openrico.org/" target="_blank">Check it out</a> if interested.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dustinweber.com/main-page/a-simple-replacement-for-scriptaculous-rico/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This Weeks &quot;Struggle&quot;</title>
		<link>http://www.dustinweber.com/main-page/this-weeks-struggle/</link>
		<comments>http://www.dustinweber.com/main-page/this-weeks-struggle/#comments</comments>
		<pubDate>Mon, 06 Nov 2006 23:13:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS & HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Main Page]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://dustinweber.com/?p=1200</guid>
		<description><![CDATA[This week at work I&#39;ve been struggling with a relatively simple problem that is disturbingly difficult to solve (at least as a humble web developer like myself). Basically, I need to generate a dynamic, database-driven, menu system that will allow me to make some highly complex (tree-like) decisions based on user decisions.&#160; Ok, stated out [...]]]></description>
			<content:encoded><![CDATA[<p><img style="width: 136px; height: 96px;" src="http://www.dustinweber.com/_photos/question-mark15161.jpg" align="left">This week at work I&#39;ve been struggling with a relatively simple problem that is disturbingly difficult to solve (at least as a humble web developer like myself).</p>
<p>Basically, I need to generate a dynamic, database-driven, menu system that will allow me to make some highly complex (tree-like) decisions based on user decisions.&nbsp; Ok, stated out like that, it may seem to be a complex problem.. but it&#39;s not, I promise.</p>
<p>In more simple terms, I need a drop-down menu system that will allow a user to &#8220;drill-down&#8221; to the proper final output without having to click on twelve submit buttons and having a lot of constraints on what they can pick depending on what was chosen in the last drop-down.&nbsp;&nbsp; I&#39;m attempting to mix some <a href="http://Script.aculo.us" target="_blank">Script.aculo.us</a>, <a href="http://en.wikipedia.org/wiki/Ajax" target="_blank">AJAX</a>, and a <a href="http://pear.php.net/package/Tree" target="_blank">Pear tree</a> (a PHP plugin which was last updated on 3/17/03 as a beta).&nbsp; </p>
<p>Let me give a real world example of what I&#39;m trying to do.&nbsp; You can imagine my problem by thinking about how you would implement a car repair web site.&nbsp; If you wanted information about your 2002 Ford Mustang&#39;s automatic transmission: you would first pick &#8220;2002&#8243;, which would then fade in a new drop-down with all the valid 2002 car models&#8230; so then you pick &#8220;Ford&#8221;&#8230; which would then fade in another new drop-down with all of the valid 2002&nbsp;Ford models&#8230; now you pick Mustang&#8230; we get a new drop-down with the different 2002 Ford Mustang models&#8230; I think you get the idea.</p>
<p>The real problem is in doing this efficiently, elegantly, and enhancing the experience with a touch of <a href="http://script.aculo.us" target="_blank">Scriptaculous</a>.&nbsp; It&#39;s tougher than you might guess.&nbsp; I&#39;ll let you know how it ends up!</p>
<p><span style="font-style: italic;">A special note to <a href="http://jim.eponym.com" target="_blank">Jim</a>:</span> Yes, I know this problem might be easier solved in <a href="http://en.wikipedia.org/wiki/Ruby_on_rails" target="_blank">Rails</a>, but who says a challenge isn&#39;t fun?</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dustinweber.com/main-page/this-weeks-struggle/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Have you heard of Script.aculo.us?</title>
		<link>http://www.dustinweber.com/main-page/have-you-heard-of-scriptaculous/</link>
		<comments>http://www.dustinweber.com/main-page/have-you-heard-of-scriptaculous/#comments</comments>
		<pubDate>Sat, 28 Oct 2006 10:00:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Main Page]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://dustinweber.com/?p=1196</guid>
		<description><![CDATA[If you are any sort of a web developer, you should be interested in Script.aculo.us Why?&#160; Simply because it&#39;s an incredible useful and powerful Javascript library/package that can help you create incredibly rich interfaces and some nice eye candy at the same time.&#160; I was initially introduced to this amazing product through my former co-worker [...]]]></description>
			<content:encoded><![CDATA[<p>If you are any sort of a web developer, you should be interested in <a href="http://Script.aculo.us" target="_blank">Script.aculo.us</a></p>
<p>Why?&nbsp; Simply because it&#39;s an incredible useful and powerful Javascript library/package that can help you create incredibly rich interfaces and some nice eye candy at the same time.&nbsp; </p>
<p>I was initially introduced to this amazing product through my former co-worker <a href="http://jim.eponym.com" target="_blank">Jim</a> when he used it extensively in his <a href="http://www.rubyonrails.org/" target="_blank">Ruby on Rails</a> projects (since it&#39;s sorta integrated).&nbsp; </p>
<p>Until recently though, I had never really paid much attention other than thinking it looked pretty cool.&nbsp; However, while working on some freelance projects this week, I realized how useful a particular bit of Script.aculo.us (the drag &amp; drop lists) could help me with a problem I&#39;ve had.&nbsp; So, I downloaded the PHP package and immediately started using it. </p>
<p>Then end result?&nbsp; It worked flawlessly and made the project both useful and very good looking!</p>
<p>Thanks Jim.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dustinweber.com/main-page/have-you-heard-of-scriptaculous/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

