<?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: MooTools 1.2 for The Non Programmer</title>
	<atom:link href="http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/</link>
	<description>Website Design and Programming Information</description>
	<lastBuildDate>Sat, 12 Dec 2009 20:23:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: admin</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-203</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 09 Dec 2009 00:27:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-203</guid>
		<description>$$(&#039;div.someClass&#039;).each( function( theDiv )
{
    // Add your effects here to theDiv
});</description>
		<content:encoded><![CDATA[<p>$$(&#8216;div.someClass&#8217;).each( function( theDiv )<br />
{<br />
    // Add your effects here to theDiv<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: qamar</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-202</link>
		<dc:creator>qamar</dc:creator>
		<pubDate>Wed, 09 Dec 2009 00:22:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-202</guid>
		<description>the toggle script is really useful and works like a dream.

one question. if i have several div panels, is there a way to write the code so that you don&#039;t have to duplicate it for each div panel

thanks</description>
		<content:encoded><![CDATA[<p>the toggle script is really useful and works like a dream.</p>
<p>one question. if i have several div panels, is there a way to write the code so that you don&#8217;t have to duplicate it for each div panel</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-195</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Wed, 11 Nov 2009 18:06:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-195</guid>
		<description>fixed it already by adding a new event and using the slideout function to each button corresponding to each panel:

toggleMe.hide();

$(&#039;toggler&#039;).addEvent(&#039;click&#039;, function(e) {
e.stop();
toggleMe.toggle();


});
$(&#039;toggler2&#039;).addEvent(&#039;click&#039;, function(e){
e = new Event(e);
toggleMe.slideOut(); //Hide login panel
e.stop();
});
$(&#039;toggler3&#039;).addEvent(&#039;click&#039;, function(e){
e = new Event(e);
toggleMe.slideOut(); //Hide login panel
e.stop();
});
});

-Ryan</description>
		<content:encoded><![CDATA[<p>fixed it already by adding a new event and using the slideout function to each button corresponding to each panel:</p>
<p>toggleMe.hide();</p>
<p>$(&#8216;toggler&#8217;).addEvent(&#8216;click&#8217;, function(e) {<br />
e.stop();<br />
toggleMe.toggle();</p>
<p>});<br />
$(&#8216;toggler2&#8242;).addEvent(&#8216;click&#8217;, function(e){<br />
e = new Event(e);<br />
toggleMe.slideOut(); //Hide login panel<br />
e.stop();<br />
});<br />
$(&#8216;toggler3&#8242;).addEvent(&#8216;click&#8217;, function(e){<br />
e = new Event(e);<br />
toggleMe.slideOut(); //Hide login panel<br />
e.stop();<br />
});<br />
});</p>
<p>-Ryan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-194</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Wed, 11 Nov 2009 15:22:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-194</guid>
		<description>Hi thanks for such a great beginnners guide. I am still learning and I have a question. 
I am creating three slide out boxed for information on SEO services on my site. I have made two links work so far, so a slide down panel displays more information using example number two on your tutorial. What I can&#039;t figure out is how can I get each link to close the previous link&#039;s panel? In other words when I open the panel by clicking the link &quot;Directory Submissions&quot;, I would like to close this panel and open the next one by clicking on &quot;Article Submissions&quot;. I have uploaded what I am working on to explain: http://www.sterlingdesignuk.com/example/seo.html

Any help would be much appreciated.</description>
		<content:encoded><![CDATA[<p>Hi thanks for such a great beginnners guide. I am still learning and I have a question.<br />
I am creating three slide out boxed for information on SEO services on my site. I have made two links work so far, so a slide down panel displays more information using example number two on your tutorial. What I can&#8217;t figure out is how can I get each link to close the previous link&#8217;s panel? In other words when I open the panel by clicking the link &#8220;Directory Submissions&#8221;, I would like to close this panel and open the next one by clicking on &#8220;Article Submissions&#8221;. I have uploaded what I am working on to explain: <a href="http://www.sterlingdesignuk.com/example/seo.html" rel="nofollow">http://www.sterlingdesignuk.com/example/seo.html</a></p>
<p>Any help would be much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: websage</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-193</link>
		<dc:creator>websage</dc:creator>
		<pubDate>Tue, 27 Oct 2009 18:29:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-193</guid>
		<description>Anyone who might have trouble on the Slide Effect with a messed layout in IE7
should check if the wrapper element div is defined correctly in CSS.
It will work fine on IE7 if it is defined this way:
#wrapper {
padding: 0;
margin: 0;
display: block;
width: 100%;
position: relative;
}
Of course, margin and padding maybe changed afterwards, but you avoid display errors using this.</description>
		<content:encoded><![CDATA[<p>Anyone who might have trouble on the Slide Effect with a messed layout in IE7<br />
should check if the wrapper element div is defined correctly in CSS.<br />
It will work fine on IE7 if it is defined this way:<br />
#wrapper {<br />
padding: 0;<br />
margin: 0;<br />
display: block;<br />
width: 100%;<br />
position: relative;<br />
}<br />
Of course, margin and padding maybe changed afterwards, but you avoid display errors using this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-180</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 04 Aug 2009 14:57:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-180</guid>
		<description>@bladimir, I regret to inform that I have moved to the world of Apple and no longer have IE avaialble to me.</description>
		<content:encoded><![CDATA[<p>@bladimir, I regret to inform that I have moved to the world of Apple and no longer have IE avaialble to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bladimir</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-179</link>
		<dc:creator>bladimir</dc:creator>
		<pubDate>Tue, 04 Aug 2009 08:41:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-179</guid>
		<description>for a start your examples are great! I am trying to get into this mootols things  :-)  
Thanks for posting this kind of usefull information.
Anyway , i just wanted to let you know that the Horizontal variation of the example is not working on IE, can you please help me to solve this?
regards

blady</description>
		<content:encoded><![CDATA[<p>for a start your examples are great! I am trying to get into this mootols things  <img src='http://www.prime31.com/Blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
Thanks for posting this kind of usefull information.<br />
Anyway , i just wanted to let you know that the Horizontal variation of the example is not working on IE, can you please help me to solve this?<br />
regards</p>
<p>blady</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-160</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 20 Jul 2009 16:21:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-160</guid>
		<description>@Deming, any text edit will work fine.</description>
		<content:encoded><![CDATA[<p>@Deming, any text edit will work fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deming</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-159</link>
		<dc:creator>Deming</dc:creator>
		<pubDate>Mon, 20 Jul 2009 14:38:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-159</guid>
		<description>I&#039;ve been reading about how fantastic MooTools is and I want to learn it. I&#039;m not sure what software to use in order to create with MooTools. Could someone provide me with names of what they use to edit and create with MooTools please. For example, are most people simply using a notepad to edit files or is this something that can be utilized within Dreamweaver? I&#039;m clueless, sure. Thanks!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been reading about how fantastic MooTools is and I want to learn it. I&#8217;m not sure what software to use in order to create with MooTools. Could someone provide me with names of what they use to edit and create with MooTools please. For example, are most people simply using a notepad to edit files or is this something that can be utilized within Dreamweaver? I&#8217;m clueless, sure. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sunny Singh</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-156</link>
		<dc:creator>Sunny Singh</dc:creator>
		<pubDate>Fri, 10 Jul 2009 16:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-156</guid>
		<description>I tried the alert one and it worked great when I put the ID that existed in the source, but when I tried manipulating something that was created from JavaScript (rendered, so it&#039;s not in the source) it did not work. Doesn&#039;t it still exist in the DOM? I don&#039;t understand why it&#039;s nto getting affected.

Note I don&#039;t know much about JavaScript.</description>
		<content:encoded><![CDATA[<p>I tried the alert one and it worked great when I put the ID that existed in the source, but when I tried manipulating something that was created from JavaScript (rendered, so it&#8217;s not in the source) it did not work. Doesn&#8217;t it still exist in the DOM? I don&#8217;t understand why it&#8217;s nto getting affected.</p>
<p>Note I don&#8217;t know much about JavaScript.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-155</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 17 Jun 2009 16:03:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-155</guid>
		<description>I don&#039;t have IE so I can&#039;t confirm.  What error are you seeing?  Sometimes Wordpress messes up the javascript and we just updated to the newest version last week so it may have caused some problems.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t have IE so I can&#8217;t confirm.  What error are you seeing?  Sometimes Wordpress messes up the javascript and we just updated to the newest version last week so it may have caused some problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jc</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-154</link>
		<dc:creator>jc</dc:creator>
		<pubDate>Wed, 17 Jun 2009 10:46:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-154</guid>
		<description>the slideout/slidein does not work on ie. gives an error</description>
		<content:encoded><![CDATA[<p>the slideout/slidein does not work on ie. gives an error</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-153</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 13 Jun 2009 05:25:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-153</guid>
		<description>Check out the main page (http://www.prime31.com) for an example using jquery.  It would be pretty simple to change it to use mootools.</description>
		<content:encoded><![CDATA[<p>Check out the main page (<a href="http://www.prime31.com" rel="nofollow">http://www.prime31.com</a>) for an example using jquery.  It would be pretty simple to change it to use mootools.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marzbite</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-152</link>
		<dc:creator>marzbite</dc:creator>
		<pubDate>Sat, 13 Jun 2009 05:16:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-152</guid>
		<description>this is great any help creating an image slideShow using Fx.slide?</description>
		<content:encoded><![CDATA[<p>this is great any help creating an image slideShow using Fx.slide?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: atimesa</title>
		<link>http://www.prime31.com/Blog/mootools/mootools-12-for-the-non-programmer/comment-page-1/#comment-149</link>
		<dc:creator>atimesa</dc:creator>
		<pubDate>Tue, 14 Apr 2009 04:11:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.prime31.com/Blog/2008/02-26/test-post-this-is-the-title/#comment-149</guid>
		<description>Last two examples not working on either FF or IE.</description>
		<content:encoded><![CDATA[<p>Last two examples not working on either FF or IE.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.323 seconds -->
