<?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>Ryan Rampersad &#187; Mootools</title>
	<atom:link href="http://ryan.ifupdown.com/category/mootools/feed/" rel="self" type="application/rss+xml" />
	<link>http://ryan.ifupdown.com</link>
	<description>Opinions, Thoughts and Ideas - PHP, Java and Javascript</description>
	<lastBuildDate>Thu, 29 Jul 2010 00:26:00 +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>missing argument 1 when calling function mutator.call</title>
		<link>http://ryan.ifupdown.com/2010/06/25/missing-argument-1-when-calling-function-mutator-call/</link>
		<comments>http://ryan.ifupdown.com/2010/06/25/missing-argument-1-when-calling-function-mutator-call/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 08:20:37 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Error]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Mootools]]></category>
		<category><![CDATA[call]]></category>
		<category><![CDATA[mutator]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[solve]]></category>

		<guid isPermaLink="false">http://ryan.ifupdown.com/?p=2241</guid>
		<description><![CDATA[I&#8217;ve been doing some hefty MooTools development lately, and I ran into a odd ball error in that endeavor. I put it aside for a while, ignoring it while I worked on other code. Eventuallly, I had to face it though, so here are my remarks in that journey. First, the error in question is [...]


Related posts:<ol><li><a href='http://ryan.ifupdown.com/2008/08/06/call-to-a-member-function-on-a-non-object/' rel='bookmark' title='Permanent Link: Call to a member function on a non-object'>Call to a member function on a non-object</a></li>
<li><a href='http://ryan.ifupdown.com/2010/01/13/testing-events-in-mootools-classes/' rel='bookmark' title='Permanent Link: Testing Events in MooTools Classes'>Testing Events in MooTools Classes</a></li>
<li><a href='http://ryan.ifupdown.com/2009/12/18/greefootimage-drawrect-missing-sides/' rel='bookmark' title='Permanent Link: GreefootImage drawRect Missing Sides'>GreefootImage drawRect Missing Sides</a></li>
</ol>]]></description>
		<wfw:commentRss>http://ryan.ifupdown.com/2010/06/25/missing-argument-1-when-calling-function-mutator-call/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Queue Ajax Requests in Mootools</title>
		<link>http://ryan.ifupdown.com/2010/02/25/queue-ajax-requests-in-mootools/</link>
		<comments>http://ryan.ifupdown.com/2010/02/25/queue-ajax-requests-in-mootools/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 23:52:56 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[chain]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[queue]]></category>
		<category><![CDATA[request]]></category>

		<guid isPermaLink="false">http://ryan.ifupdown.com/?p=1978</guid>
		<description><![CDATA[On a recent project, I used ajax to render a full cell of a table upon clicking it. I found that without some kind of queue, my clients would click on a bunch to expand them, but only the first would render. Mootools offers a plugin in mootools more called Request.Queue, but that wasn&#8217;t what [...]


Related posts:<ol><li><a href='http://ryan.ifupdown.com/2009/01/14/extending-mootools-could-lead-to-bloat/' rel='bookmark' title='Permanent Link: Extending Mootools Core could lead to Bloat'>Extending Mootools Core could lead to Bloat</a></li>
<li><a href='http://ryan.ifupdown.com/2009/04/11/php-functions-with-options/' rel='bookmark' title='Permanent Link: PHP Functions with Options'>PHP Functions with Options</a></li>
<li><a href='http://ryan.ifupdown.com/2009/08/24/disable-cakephp-sql-log-when-using-ajax/' rel='bookmark' title='Permanent Link: Disable CakePHP SQL Log when using Ajax'>Disable CakePHP SQL Log when using Ajax</a></li>
</ol>]]></description>
		<wfw:commentRss>http://ryan.ifupdown.com/2010/02/25/queue-ajax-requests-in-mootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing Events in MooTools Classes</title>
		<link>http://ryan.ifupdown.com/2010/01/13/testing-events-in-mootools-classes/</link>
		<comments>http://ryan.ifupdown.com/2010/01/13/testing-events-in-mootools-classes/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 23:45:29 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://ryan.ifupdown.com/?p=1916</guid>
		<description><![CDATA[I was adding some much needed events to my GoodCarousel plugin for MooTools recently. I added what I thought others might need, startUp, beforeSlide, afterSlide, end, startOver, mouseEnter, mouseLeave But since I&#8217;m lazy, I didn&#8217;t want to explicitly write a function for each of those events and then put them in options argument. I&#8217;m just [...]


Related posts:<ol><li><a href='http://ryan.ifupdown.com/2009/01/15/mootools-domready-shortcut/' rel='bookmark' title='Permanent Link: Mootools DomReady Shortcut'>Mootools DomReady Shortcut</a></li>
<li><a href='http://ryan.ifupdown.com/2009/10/24/goodcarousel-a-carousel-with-mootools/' rel='bookmark' title='Permanent Link: GoodCarousel &#8211; A Carousel with Mootools'>GoodCarousel &#8211; A Carousel with Mootools</a></li>
<li><a href='http://ryan.ifupdown.com/2010/01/07/mootools-takeout-and-putback-methods/' rel='bookmark' title='Permanent Link: MooTools: takeOut and putBack methods'>MooTools: takeOut and putBack methods</a></li>
</ol>]]></description>
		<wfw:commentRss>http://ryan.ifupdown.com/2010/01/13/testing-events-in-mootools-classes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MooTools: takeOut and putBack methods</title>
		<link>http://ryan.ifupdown.com/2010/01/07/mootools-takeout-and-putback-methods/</link>
		<comments>http://ryan.ifupdown.com/2010/01/07/mootools-takeout-and-putback-methods/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 23:31:37 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[element]]></category>
		<category><![CDATA[implement]]></category>
		<category><![CDATA[putBack]]></category>
		<category><![CDATA[takeOut]]></category>

		<guid isPermaLink="false">http://ryan.ifupdown.com/?p=1903</guid>
		<description><![CDATA[Sometimes you don&#8217;t want to replace an element with another one, you just want a placeholder, so you can put it back later. I wrote takeOut and putBack to help out with that. Element.implement({ takeOut: function(elementType) { var elementType = ($type(elementType) == &#34;string&#34; ? elementType: &#34;span&#34;); this.placeholder = ($defined(this.placeholder) ? this.placeholder : new Element(elementType).setStyle(&#34;display&#34;, &#34;none&#34;).addClass(&#34;takenOut_&#34;+this.get(&#34;id&#34;))); [...]


Related posts:<ol><li><a href='http://ryan.ifupdown.com/2009/07/15/randomize-an-array-with-mootools/' rel='bookmark' title='Permanent Link: Randomize an Array with Mootools'>Randomize an Array with Mootools</a></li>
<li><a href='http://ryan.ifupdown.com/2009/04/15/easy-php-debugging-function/' rel='bookmark' title='Permanent Link: Easy PHP Debugging Function'>Easy PHP Debugging Function</a></li>
<li><a href='http://ryan.ifupdown.com/2009/01/03/easier-date-time-with-mootools/' rel='bookmark' title='Permanent Link: Easier Date-Time with Mootools'>Easier Date-Time with Mootools</a></li>
</ol>]]></description>
		<wfw:commentRss>http://ryan.ifupdown.com/2010/01/07/mootools-takeout-and-putback-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GoodCarousel &#8211; A Carousel with Mootools</title>
		<link>http://ryan.ifupdown.com/2009/10/24/goodcarousel-a-carousel-with-mootools/</link>
		<comments>http://ryan.ifupdown.com/2009/10/24/goodcarousel-a-carousel-with-mootools/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 00:30:27 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Mootools]]></category>
		<category><![CDATA[goodcarousel]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://ryan.ifupdown.com/?p=1487</guid>
		<description><![CDATA[Hey there. I&#8217;m trying to get this plugin into the Mootools Forge but I&#8217;ve been having a hard time getting it to work. So in the mean time, checkout the repository on github. GoodCarousel is a plugin made with Mootools 1.2.3. It is made to slide over to, not fade to, the next slide and [...]


Related posts:<ol><li><a href='http://ryan.ifupdown.com/2008/07/30/cdata-and-inline-javascript/' rel='bookmark' title='Permanent Link: CDATA and inline javascript'>CDATA and inline javascript</a></li>
<li><a href='http://ryan.ifupdown.com/2010/01/13/testing-events-in-mootools-classes/' rel='bookmark' title='Permanent Link: Testing Events in MooTools Classes'>Testing Events in MooTools Classes</a></li>
<li><a href='http://ryan.ifupdown.com/2009/01/03/easier-date-time-with-mootools/' rel='bookmark' title='Permanent Link: Easier Date-Time with Mootools'>Easier Date-Time with Mootools</a></li>
</ol>]]></description>
		<wfw:commentRss>http://ryan.ifupdown.com/2009/10/24/goodcarousel-a-carousel-with-mootools/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>mooWalkthrough Feedback for the Future</title>
		<link>http://ryan.ifupdown.com/2009/09/04/moowalkthrough-feedback-for-the-future/</link>
		<comments>http://ryan.ifupdown.com/2009/09/04/moowalkthrough-feedback-for-the-future/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 23:28:16 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[mooWalkthrough]]></category>

		<guid isPermaLink="false">http://ryan.ifupdown.com/?p=1499</guid>
		<description><![CDATA[The mooWalkthrough has been around for a couple years now. I know that people read it but I don&#8217;t see or hear much feedback such as likes and dislikes about the content, pacing, structure and so on. Every school year I take a couple weeks and rewrite some of it. Last last year I bit [...]


Related posts:<ol><li><a href='http://ryan.ifupdown.com/2008/12/03/moowalkthrough-inspiration/' rel='bookmark' title='Permanent Link: mooWalkthrough Inspiration'>mooWalkthrough Inspiration</a></li>
<li><a href='http://ryan.ifupdown.com/2009/02/18/coming-soon-moowalkthrough-12x/' rel='bookmark' title='Permanent Link: Coming Soon: mooWalkthrough 1.2.x'>Coming Soon: mooWalkthrough 1.2.x</a></li>
<li><a href='http://ryan.ifupdown.com/2009/09/10/two-javascript-testing-utilities/' rel='bookmark' title='Permanent Link: Two Javascript Testing Utilities'>Two Javascript Testing Utilities</a></li>
</ol>]]></description>
		<wfw:commentRss>http://ryan.ifupdown.com/2009/09/04/moowalkthrough-feedback-for-the-future/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>GoodCorners &#8211; Rounded Corners with Mootools</title>
		<link>http://ryan.ifupdown.com/2009/08/26/goodcorners-rounded-corners-with-mootools/</link>
		<comments>http://ryan.ifupdown.com/2009/08/26/goodcorners-rounded-corners-with-mootools/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 00:15:16 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Mootools]]></category>
		<category><![CDATA[good corners]]></category>
		<category><![CDATA[round corners]]></category>
		<category><![CDATA[rounded edges]]></category>

		<guid isPermaLink="false">http://ryan.ifupdown.com/?p=1466</guid>
		<description><![CDATA[GoodCorners is a tiny Mootools plugin that can apply the CSS3 border-radius to elements using a unified syntax so you can have beautiful rounded corners. Usage GoodCorners can be used in a couple different ways. Both parameters are optional. Omitting both will automatically round any elements with the gc class already on them. If you [...]


Related posts:<ol><li><a href='http://ryan.ifupdown.com/2010/06/23/rounded-css3-corners/' rel='bookmark' title='Permanent Link: Rounded CSS3 Corners'>Rounded CSS3 Corners</a></li>
<li><a href='http://ryan.ifupdown.com/2009/10/24/goodcarousel-a-carousel-with-mootools/' rel='bookmark' title='Permanent Link: GoodCarousel &#8211; A Carousel with Mootools'>GoodCarousel &#8211; A Carousel with Mootools</a></li>
<li><a href='http://ryan.ifupdown.com/2009/09/20/highlight-author-comments-with-the-hybrid-theme-framework/' rel='bookmark' title='Permanent Link: Highlight Author Comments with the Hybrid Theme Framework'>Highlight Author Comments with the Hybrid Theme Framework</a></li>
</ol>]]></description>
		<wfw:commentRss>http://ryan.ifupdown.com/2009/08/26/goodcorners-rounded-corners-with-mootools/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Randomize an Array with Mootools</title>
		<link>http://ryan.ifupdown.com/2009/07/15/randomize-an-array-with-mootools/</link>
		<comments>http://ryan.ifupdown.com/2009/07/15/randomize-an-array-with-mootools/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 00:31:49 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[randomize]]></category>

		<guid isPermaLink="false">http://ryan.ifupdown.com/?p=1292</guid>
		<description><![CDATA[Mootools doesn&#8217;t offer a native way to randomize an array but it does offer a way to get a single random element from an array. You can extend Mootools to have an Array.randomize method. It&#8217;s really easy to do. Array.implement({ randomize: function() { return this.sort(function() {return 0.5 - Math.random();}); } }); Now you can easily [...]


Related posts:<ol><li><a href='http://ryan.ifupdown.com/2009/02/11/random-element-from-array-in-php/' rel='bookmark' title='Permanent Link: Random Element from Array in PHP'>Random Element from Array in PHP</a></li>
<li><a href='http://ryan.ifupdown.com/2009/01/14/extending-mootools-could-lead-to-bloat/' rel='bookmark' title='Permanent Link: Extending Mootools Core could lead to Bloat'>Extending Mootools Core could lead to Bloat</a></li>
<li><a href='http://ryan.ifupdown.com/2008/10/13/shuffle-an-array-in-java/' rel='bookmark' title='Permanent Link: Shuffle an Array in Java'>Shuffle an Array in Java</a></li>
</ol>]]></description>
		<wfw:commentRss>http://ryan.ifupdown.com/2009/07/15/randomize-an-array-with-mootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming Soon: mooWalkthrough 1.2.x</title>
		<link>http://ryan.ifupdown.com/2009/02/18/coming-soon-moowalkthrough-12x/</link>
		<comments>http://ryan.ifupdown.com/2009/02/18/coming-soon-moowalkthrough-12x/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 06:37:04 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[1.2.1]]></category>
		<category><![CDATA[1.2.x]]></category>
		<category><![CDATA[mooWalkthrough]]></category>

		<guid isPermaLink="false">http://ryan.ifupdown.com/?p=1004</guid>
		<description><![CDATA[Can you believe I left this post alone without a link to the mooWalkthrough? The 1.2.x edition is out right now waiting for you to read it. It&#8217;s practically begging you. I&#8217;ve been working on the next version of the mooWalkthrough, 1.2.x. It works with the 1.2.x version of Mootools. I wrote it this time [...]


Related posts:<ol><li><a href='http://ryan.ifupdown.com/2009/09/04/moowalkthrough-feedback-for-the-future/' rel='bookmark' title='Permanent Link: mooWalkthrough Feedback for the Future'>mooWalkthrough Feedback for the Future</a></li>
<li><a href='http://ryan.ifupdown.com/2008/12/03/moowalkthrough-inspiration/' rel='bookmark' title='Permanent Link: mooWalkthrough Inspiration'>mooWalkthrough Inspiration</a></li>
<li><a href='http://ryan.ifupdown.com/2010/02/25/queue-ajax-requests-in-mootools/' rel='bookmark' title='Permanent Link: Queue Ajax Requests in Mootools'>Queue Ajax Requests in Mootools</a></li>
</ol>]]></description>
		<wfw:commentRss>http://ryan.ifupdown.com/2009/02/18/coming-soon-moowalkthrough-12x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>State of the Mootools</title>
		<link>http://ryan.ifupdown.com/2009/01/20/state-of-the-mootools/</link>
		<comments>http://ryan.ifupdown.com/2009/01/20/state-of-the-mootools/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 00:20:46 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[disconnection]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[state]]></category>

		<guid isPermaLink="false">http://ryan.ifupdown.com/?p=929</guid>
		<description><![CDATA[Tyler left a comment on one of my early blog posts, Mootools is not dead. His comment follows: What would you say about this now? I agree with the subtext suggested by the authors of your excerpted posts. There has been an undercurrent in the MooTools-o-sphere for more than a year now: that developers’ insolence [...]


Related posts:<ol><li><a href='http://ryan.ifupdown.com/2008/07/30/mootools-is-not-dead/' rel='bookmark' title='Permanent Link: Mootools is not dead'>Mootools is not dead</a></li>
<li><a href='http://ryan.ifupdown.com/2008/08/18/30-days-of-mootools-12-tutorials-from-consideropencom/' rel='bookmark' title='Permanent Link: 30 Days of Mootools 1.2 Tutorials from consideropen.com'>30 Days of Mootools 1.2 Tutorials from consideropen.com</a></li>
<li><a href='http://ryan.ifupdown.com/2009/01/02/mootools-forge/' rel='bookmark' title='Permanent Link: Mootools Forge'>Mootools Forge</a></li>
</ol>]]></description>
		<wfw:commentRss>http://ryan.ifupdown.com/2009/01/20/state-of-the-mootools/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
