<?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 on: Introducing the Lab</title>
	<atom:link href="http://devkick.com/blog/introducing-the-lab/feed/" rel="self" type="application/rss+xml" />
	<link>http://devkick.com/blog/introducing-the-lab/</link>
	<description>Kick-start your web development</description>
	<pubDate>Mon, 08 Sep 2008 04:32:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Jurgen Posselt</title>
		<link>http://devkick.com/blog/introducing-the-lab/#comment-3944</link>
		<dc:creator>Jurgen Posselt</dc:creator>
		<pubDate>Sat, 23 Aug 2008 07:01:59 +0000</pubDate>
		<guid isPermaLink="false">http://devkick.com/blog/?p=15#comment-3944</guid>
		<description>I just discovered your web site yesterday and in a nutshell, you guys have restored my faith in the internet. How long have you been around?  KEEP UP THE GREAT WORK. I love this site !!</description>
		<content:encoded><![CDATA[<p>I just discovered your web site yesterday and in a nutshell, you guys have restored my faith in the internet. How long have you been around?  KEEP UP THE GREAT WORK. I love this site !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://devkick.com/blog/introducing-the-lab/#comment-53</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 06 May 2008 10:52:19 +0000</pubDate>
		<guid isPermaLink="false">http://devkick.com/blog/?p=15#comment-53</guid>
		<description>@Eugene: You raise a valid point, but it does not necessarily rule out :path. :path does not tell you how to style your active or current links, it's just a front-end alternative that pulls active hrefs automatically. Nielsen recommends that you should not have a link that points to the current page, just as you say, that's why :path comes bundled with :current. This example replaces the anchor that points to the current page with it's containing text (thus removing the anchor):

$('ul a:current').each(function() { 
    $(this).replaceWith($(this).text()); 
});</description>
		<content:encoded><![CDATA[<p>@Eugene: You raise a valid point, but it does not necessarily rule out :path. :path does not tell you how to style your active or current links, it&#8217;s just a front-end alternative that pulls active hrefs automatically. Nielsen recommends that you should not have a link that points to the current page, just as you say, that&#8217;s why :path comes bundled with :current. This example replaces the anchor that points to the current page with it&#8217;s containing text (thus removing the anchor):</p>
<p>$(&#8217;ul a:current&#8217;).each(function() {<br />
    $(this).replaceWith($(this).text());<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eugene Efimochkin</title>
		<link>http://devkick.com/blog/introducing-the-lab/#comment-52</link>
		<dc:creator>Eugene Efimochkin</dc:creator>
		<pubDate>Tue, 06 May 2008 10:36:58 +0000</pubDate>
		<guid isPermaLink="false">http://devkick.com/blog/?p=15#comment-52</guid>
		<description>OK guys, :path is nice but there's a great problem there. I dealed with it once I was hired to my current job (http://www.itech-design.ru). The problem is that you make a link _look_ like it is not a link, when it obviously _is_ a link. It even acts like a link (and if you prohibit it's default behaviour with script you are going one step more the wrong path). My rule of thumb for visual states and links is: when you don't need a link, don't make it. That's it. You see, we use server-side page generators most of the time, hence we _can_ remove the &#60;a&#62;&#60;/a&#62; garments each time we don't need a link  (performance is the question -- but it always was dealable anyway). It is possible nowadays. 

When we create static pages - why not think a bit and find a way to develop a template based site that doesn't have links where we don't need them? It is also possible with modern tools (damn, it is even MORE possible when we use just Notepad)! 

Here in ITECH.group we don't use such tricky JavaScript «link tortures» for at aleast a year (just since the moment I was hired), you can check our portfolio. When we don't need a link - we don't put it.</description>
		<content:encoded><![CDATA[<p>OK guys, :path is nice but there&#8217;s a great problem there. I dealed with it once I was hired to my current job (http://www.itech-design.ru). The problem is that you make a link _look_ like it is not a link, when it obviously _is_ a link. It even acts like a link (and if you prohibit it&#8217;s default behaviour with script you are going one step more the wrong path). My rule of thumb for visual states and links is: when you don&#8217;t need a link, don&#8217;t make it. That&#8217;s it. You see, we use server-side page generators most of the time, hence we _can_ remove the &lt;a&gt;&lt;/a&gt; garments each time we don&#8217;t need a link  (performance is the question &#8212; but it always was dealable anyway). It is possible nowadays. </p>
<p>When we create static pages - why not think a bit and find a way to develop a template based site that doesn&#8217;t have links where we don&#8217;t need them? It is also possible with modern tools (damn, it is even MORE possible when we use just Notepad)! </p>
<p>Here in ITECH.group we don&#8217;t use such tricky JavaScript «link tortures» for at aleast a year (just since the moment I was hired), you can check our portfolio. When we don&#8217;t need a link - we don&#8217;t put it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://devkick.com/blog/introducing-the-lab/#comment-33</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 03 May 2008 13:45:30 +0000</pubDate>
		<guid isPermaLink="false">http://devkick.com/blog/?p=15#comment-33</guid>
		<description>@Wes: Have a look at our latest post http://devkick.com/blog/the-visual-active-state-popular-techniques-and-examples/ 

It explains some of the pros and cons. I prefer the jQuery route myself.</description>
		<content:encoded><![CDATA[<p>@Wes: Have a look at our latest post http://devkick.com/blog/the-visual-active-state-popular-techniques-and-examples/ </p>
<p>It explains some of the pros and cons. I prefer the jQuery route myself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wes</title>
		<link>http://devkick.com/blog/introducing-the-lab/#comment-23</link>
		<dc:creator>Wes</dc:creator>
		<pubDate>Thu, 01 May 2008 15:33:45 +0000</pubDate>
		<guid isPermaLink="false">http://devkick.com/blog/?p=15#comment-23</guid>
		<description>Seems like a great tool. I guess my only question is what is wrong with the method of body id's and navigation element id's? Using jQuery some people might miss out on the styling.

For instance:

    
        Home
        About
    
....

CSS:
body#index #nav_index, body#about #nav_about { /* active nav info */ }</description>
		<content:encoded><![CDATA[<p>Seems like a great tool. I guess my only question is what is wrong with the method of body id&#8217;s and navigation element id&#8217;s? Using jQuery some people might miss out on the styling.</p>
<p>For instance:</p>
<p>        Home<br />
        About</p>
<p>&#8230;.</p>
<p>CSS:<br />
body#index #nav_index, body#about #nav_about { /* active nav info */ }</p>
]]></content:encoded>
	</item>
</channel>
</rss>
