<?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>Unwrongest &#187; navigation</title>
	<atom:link href="http://www.unwrongest.com/tag/navigation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.unwrongest.com</link>
	<description>Interaction Designer and Interface Developer</description>
	<lastBuildDate>Wed, 30 Jun 2010 11:24:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Tabify &#8211; Tabbed content with ease (jQuery plugin)</title>
		<link>http://www.unwrongest.com/projects/tabify/</link>
		<comments>http://www.unwrongest.com/projects/tabify/#comments</comments>
		<pubDate>Thu, 07 May 2009 03:57:01 +0000</pubDate>
		<dc:creator>Jan Jarfalk</dc:creator>
				<category><![CDATA[projects]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://unwr/?p=172</guid>
		<description><![CDATA[This Jquery plugin lets you easily create tabbed content. All you need is an ul-element with some li-elements and a couple of related content-divs. The major difference between Tabify and it's competitors is it's size.]]></description>
			<content:encoded><![CDATA[<h2>How to use Tabify</h2>
<p>It is very easy to use Tabify. All you need to do is to create an ul-list, fill it with a couple of li-elements with containing links (tabs) and create a couple of matching content divs. In the example below notice how the href-attribute on the link elements corresponds to the content div IDs.</p>
<pre class="brush: xml;">
&lt;ul id=&quot;menu&quot;&gt;
	&lt;li class=&quot;active&quot;&gt;&lt;a href=&quot;#contentHome&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#contentGuestbook&quot;&gt;Guestbook&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#contentLinks&quot;&gt;Links&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div id=&quot;contentHome&quot;&gt;Content for Home&lt;/div&gt;
&lt;div id=&quot;contentGuestbook&quot;&gt;My guestbook&lt;/div&gt;
&lt;div id=&quot;contentLinks&quot;&gt;Links&lt;/div&gt;
</pre>
<p>When you have created the necessary html code you need to include the javascript file with the plugin and call the tabify method.</p>
<pre class="brush: jscript;">$('ul').tabify();</pre>
<table class="project-table">
<caption>Change log</caption>
<thead>
<tr>
<th class="version">Version</th>
<th class="changes">Changes</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.4</td>
<td>Fixed an issue where a malformed hash would make Tabify crash.</td>
</tr>
<tr>
<td>1.3</td>
<td>Fixed an issue causing the page to jump when you clicked on the tabs</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.unwrongest.com/projects/tabify/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
		<item>
		<title>Accordion &#8211; Super simple javascript accordion jQuery plugin</title>
		<link>http://www.unwrongest.com/projects/accordion/</link>
		<comments>http://www.unwrongest.com/projects/accordion/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 02:31:32 +0000</pubDate>
		<dc:creator>Jan Jarfalk</dc:creator>
				<category><![CDATA[projects]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://unwr/?p=157</guid>
		<description><![CDATA[This Jquery plugin makes creating accordions pain free. Just create an ul list and call the accordion javascript method and it is all done! Also it is super lightweight, just around 0.5kb. This Accordion script sets no limit for the depth of your accordion. You can make it as many level as you want.]]></description>
			<content:encoded><![CDATA[<p>This Jquery plugin makes creating accordions pain free. Just create an ul list and call the accordion javascript method and it is all done! Also it is super lightweight, just around 0.5kb. This Accordion script sets no limit for the depth of your accordion. You can make it as many level as you want.</p>
<h2>How to use Accordion</h2>
<p>It is very easy to use Accordion. All you need to do is to create an ul-list, fill it with a couple of li-elements and div-elements for the content; In the example below if you click on <strong>New York</strong> the div element containing <strong>Information about New York</strong> will show.</p>
<pre class="brush: xml;">
&lt;ul&gt;
    &lt;li&gt;
        &lt;a href=&quot;#america&quot;&gt;America&lt;/a&gt;
        &lt;ul&gt;
            &lt;li&gt;
                &lt;a href=&quot;#america-newyork&quot;&gt;New York&lt;/a&gt;
                &lt;div&gt;Information about New York&lt;/div&gt;
            &lt;/li&gt;
            &lt;li&gt;
                &lt;a href=&quot;#america-sanfransisco&quot;&gt;San Fransisco&lt;/a&gt;
                &lt;div&gt;Information about San Fransisco&lt;/div&gt;
            &lt;/li&gt;
        &lt;/ul&gt;
    &lt;/li&gt;
    &lt;li&gt;
        &lt;a href=&quot;#antarctica&quot;&gt;Antarctica&lt;/a&gt;
        &lt;div&gt;Information about Antarctica&lt;/div&gt;
    &lt;/li&gt;
&lt;/ul&gt;
</pre>
<p>When you have created the necessary html code you need to include the javascript file with the plugin and call the accordion method. See the demo for a more detailed example.</p>
<pre class="brush: xml;">$('ul').accordion();</pre>
<h2>Linking to a level inside the accordion</h2>
<p>Notice the href-attributes on each a-element. If you in the html code example above create a link to #america-newyork and click it the accordion will open up &#8216;New York&#8217; and all it&#8217;s parents.</p>
<h2>Open a panel on load</h2>
<p>Set the li classname to &#8220;current&#8221; and it will be open when the page loads.</p>
<table class="project-table">
<caption>Change log</caption>
<thead>
<tr>
<th class="version">Version</th>
<th class="changes">Changes</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.3</td>
<td>Refactored code and fix a bug with images inside a tags</td>
</tr>
<tr>
<td>1.2.2</td>
<td>Added functionality to open a panel on load by specifying the li class to &#8220;current&#8221;.</td>
</tr>
<tr>
<td>1.2.1</td>
<td>Fixed an error that occurred when no hash was set. </td>
</tr>
<tr>
<td>1.2</td>
<td>It is now possible to link to a specific level using a hash</td>
</tr>
<tr>
<td>1.1</td>
<td>Fixed an issue causing the accordion to stop working if you applied the accordion method twice on the same element.</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.unwrongest.com/projects/accordion/feed/</wfw:commentRss>
		<slash:comments>121</slash:comments>
		</item>
	</channel>
</rss>
