<?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"
	>
<channel>
	<title>Comments for johnmccollum.co.uk</title>
	<atom:link href="http://johnmccollum.co.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnmccollum.co.uk</link>
	<description>Thoughts on web development, social media, the internet, and computers in general.</description>
	<pubDate>Sat, 19 Jul 2008 21:40:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>Comment on New Joomla! banner component by Darb</title>
		<link>http://johnmccollum.co.uk/2008/07/09/new-joomla-banner-component/#comment-48</link>
		<dc:creator>Darb</dc:creator>
		<pubDate>Sat, 19 Jul 2008 07:46:05 +0000</pubDate>
		<guid isPermaLink="false">http://johnmccollum.co.uk/?p=17#comment-48</guid>
		<description>Good to see that you have put it up on JED!

Thanks from the Joomla community!

rgds</description>
		<content:encoded><![CDATA[<p>Good to see that you have put it up on JED!</p>
<p>Thanks from the Joomla community!</p>
<p>rgds</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New PC - 2/3 purchased! by Cheesy Name</title>
		<link>http://johnmccollum.co.uk/2008/07/16/new-pc-23-purchased/#comment-47</link>
		<dc:creator>Cheesy Name</dc:creator>
		<pubDate>Fri, 18 Jul 2008 23:14:31 +0000</pubDate>
		<guid isPermaLink="false">http://johnmccollum.co.uk/?p=19#comment-47</guid>
		<description>Hey John! Long time no see dude. Trying to get in touch with you - drop by sometime ;)</description>
		<content:encoded><![CDATA[<p>Hey John! Long time no see dude. Trying to get in touch with you - drop by sometime <img src='http://johnmccollum.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I&#8217;m a Linux geek! by johnmccollum.co.uk &#187; Blog Archive &#187; New PC - 2/3 purchased!</title>
		<link>http://johnmccollum.co.uk/2008/03/11/im-a-linux-geek/#comment-46</link>
		<dc:creator>johnmccollum.co.uk &#187; Blog Archive &#187; New PC - 2/3 purchased!</dc:creator>
		<pubDate>Wed, 16 Jul 2008 19:29:10 +0000</pubDate>
		<guid isPermaLink="false">http://johnmccollum.co.uk/2008/03/11/im-a-linux-geek/#comment-46</guid>
		<description>[...] making the switch to Ubuntu certainly extended the lifespan of my home PC (I would probably have chucked it out of the nearest [...]</description>
		<content:encoded><![CDATA[<p>[...] making the switch to Ubuntu certainly extended the lifespan of my home PC (I would probably have chucked it out of the nearest [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Jquery and CSS menu by redsquare</title>
		<link>http://johnmccollum.co.uk/2008/07/13/simple-jquery-and-css-menu/#comment-45</link>
		<dc:creator>redsquare</dc:creator>
		<pubDate>Sun, 13 Jul 2008 19:08:06 +0000</pubDate>
		<guid isPermaLink="false">http://johnmccollum.co.uk/?p=18#comment-45</guid>
		<description>No probs, any issues come join us at #jquery irc channel on freenode</description>
		<content:encoded><![CDATA[<p>No probs, any issues come join us at #jquery irc channel on freenode</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Jquery and CSS menu by admin</title>
		<link>http://johnmccollum.co.uk/2008/07/13/simple-jquery-and-css-menu/#comment-44</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 13 Jul 2008 18:11:29 +0000</pubDate>
		<guid isPermaLink="false">http://johnmccollum.co.uk/?p=18#comment-44</guid>
		<description>Hi Redsquare,

Thanks for your comment! For some reason I never think to use the ternary operator - good tip. I'll also check out the toggle() function. Still got quite a bit of reading to do to be completely up to speed on Jquery, but I'm loving the experience so far!

Cheers,
John</description>
		<content:encoded><![CDATA[<p>Hi Redsquare,</p>
<p>Thanks for your comment! For some reason I never think to use the ternary operator - good tip. I&#8217;ll also check out the toggle() function. Still got quite a bit of reading to do to be completely up to speed on Jquery, but I&#8217;m loving the experience so far!</p>
<p>Cheers,<br />
John</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Jquery and CSS menu by redsquare</title>
		<link>http://johnmccollum.co.uk/2008/07/13/simple-jquery-and-css-menu/#comment-43</link>
		<dc:creator>redsquare</dc:creator>
		<pubDate>Sun, 13 Jul 2008 15:19:48 +0000</pubDate>
		<guid isPermaLink="false">http://johnmccollum.co.uk/?p=18#comment-43</guid>
		<description>Hi Mate,
Welcome to jq. I noticed in your code that you repeated the selector.

The following snippet
if($(”li:not(:first)”).is(”:visible”)){
$(”li:not(:first)”).fadeOut(”fast”);
}else{
$(”li:not(:first)”).fadeIn(”fast”);
}
would read better as

var listItems = $(”li:not(:first)”);
listItems.is(”:visible”) ? listItems.fadeOut(”fast”) : listItems.fadeIn(”fast”);

small improvement but good for performance and readability

However even better would be to make use of the toggle() function

so you can say

$(”li.starter”).toggle( 
   function(){
     $(”li:not(:first)”).fadeIn(”fast”);
   },
   function(){
     $(”li:not(:first)”).fadeOut(”fast”);
   }
);

Now each click will toggle between the two given functions.

Happy jqueing</description>
		<content:encoded><![CDATA[<p>Hi Mate,<br />
Welcome to jq. I noticed in your code that you repeated the selector.</p>
<p>The following snippet<br />
if($(”li:not(:first)”).is(”:visible”)){<br />
$(”li:not(:first)”).fadeOut(”fast”);<br />
}else{<br />
$(”li:not(:first)”).fadeIn(”fast”);<br />
}<br />
would read better as</p>
<p>var listItems = $(”li:not(:first)”);<br />
listItems.is(”:visible”) ? listItems.fadeOut(”fast”) : listItems.fadeIn(”fast”);</p>
<p>small improvement but good for performance and readability</p>
<p>However even better would be to make use of the toggle() function</p>
<p>so you can say</p>
<p>$(”li.starter”).toggle(<br />
   function(){<br />
     $(”li:not(:first)”).fadeIn(”fast”);<br />
   },<br />
   function(){<br />
     $(”li:not(:first)”).fadeOut(”fast”);<br />
   }<br />
);</p>
<p>Now each click will toggle between the two given functions.</p>
<p>Happy jqueing</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Joomla! banner component by admin</title>
		<link>http://johnmccollum.co.uk/2008/07/09/new-joomla-banner-component/#comment-42</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 12 Jul 2008 11:10:46 +0000</pubDate>
		<guid isPermaLink="false">http://johnmccollum.co.uk/?p=17#comment-42</guid>
		<description>Hey Darb,

Thanks for all your encouragement! I've taken your advice and notified the JED, hopefully it should be listed there soon.

John</description>
		<content:encoded><![CDATA[<p>Hey Darb,</p>
<p>Thanks for all your encouragement! I&#8217;ve taken your advice and notified the JED, hopefully it should be listed there soon.</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Joomla! banner component by Darb</title>
		<link>http://johnmccollum.co.uk/2008/07/09/new-joomla-banner-component/#comment-41</link>
		<dc:creator>Darb</dc:creator>
		<pubDate>Thu, 10 Jul 2008 10:18:10 +0000</pubDate>
		<guid isPermaLink="false">http://johnmccollum.co.uk/?p=17#comment-41</guid>
		<description>Hi

nice work hope you will put this up on the joomla directory as well!

rgds</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>nice work hope you will put this up on the joomla directory as well!</p>
<p>rgds</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stumbleupon - turn off sneaky bookmarking by admin</title>
		<link>http://johnmccollum.co.uk/2008/06/26/stumbleupon-turn-off-sneaky-bookmarking/#comment-40</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 26 Jun 2008 21:41:47 +0000</pubDate>
		<guid isPermaLink="false">http://johnmccollum.co.uk/?p=11#comment-40</guid>
		<description>Fair enough, diff'rent strokes for diff'rent strokes!

Kortnee, it made me thumb up a lot less too; that might be why I didn't like it! I tend to be free and easy with the thumbs. ;)</description>
		<content:encoded><![CDATA[<p>Fair enough, diff&#8217;rent strokes for diff&#8217;rent strokes!</p>
<p>Kortnee, it made me thumb up a lot less too; that might be why I didn&#8217;t like it! I tend to be free and easy with the thumbs. <img src='http://johnmccollum.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stumbleupon - turn off sneaky bookmarking by Kortnee</title>
		<link>http://johnmccollum.co.uk/2008/06/26/stumbleupon-turn-off-sneaky-bookmarking/#comment-39</link>
		<dc:creator>Kortnee</dc:creator>
		<pubDate>Thu, 26 Jun 2008 21:03:40 +0000</pubDate>
		<guid isPermaLink="false">http://johnmccollum.co.uk/?p=11#comment-39</guid>
		<description>I love it. And all of mine are sent to a neat little StumbleUpon folder. This is handy and makes me thumbs up a lot less often.</description>
		<content:encoded><![CDATA[<p>I love it. And all of mine are sent to a neat little StumbleUpon folder. This is handy and makes me thumbs up a lot less often.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
