<?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>Okada Design Blog &#187; jquery</title>
	<atom:link href="http://www.okadadesign.no/blog/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.okadadesign.no/blog</link>
	<description>Welcome to Okada Design Web Development Blog</description>
	<lastBuildDate>Wed, 11 Jan 2012 23:21:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>jquery Quicksand on Codeigniter</title>
		<link>http://www.okadadesign.no/blog/jquery/jquery-quicksand-on-codeigniter/</link>
		<comments>http://www.okadadesign.no/blog/jquery/jquery-quicksand-on-codeigniter/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 18:32:18 +0000</pubDate>
		<dc:creator>shinokada</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[quicksand]]></category>

		<guid isPermaLink="false">http://www.okadadesign.no/blog/?p=1262</guid>
		<description><![CDATA[ <p></p> <p id="top_para">I liked Quicksand by razorjack so much, so I put it on Codeigniter.</p> <p> Demo: Frontend only <p></p> <p> All the credit goes to razorjack and please read his documentation and other credits information.</p> <p>Since I am writing about Codeigniter Shopping Cart series, I am going to add the Quicksand to [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fjquery-quicksand-on-codeigniter%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fjquery-quicksand-on-codeigniter%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.okadadesign.no/blog/wp-content/uploads/2010/02/quicksand.jpg"><img src="http://www.okadadesign.no/blog/wp-content/uploads/2010/02/quicksand.jpg" alt="" title="quicksand" width="200" height="178" class="alignleft size-full wp-image-1270" /></a></p>
<p id="top_para">I liked <a href="http://razorjack.net/quicksand/">Quicksand</a> by razorjack so much, so I put it on Codeigniter.</p>
<p><a href="http://websiteclub.skagerak.org/kaimonokago/index.php/welcome/quicksand" target="_blank"><br />
<h3>Demo: Frontend only</h3>
<p></a></p>
<div class="clearboth"></div>
<p><span id="more-1262"></span><br />
All the credit goes to razorjack and please read <a href="http://razorjack.net/quicksand/docs-and-demos.html">his documentation and other credits information</a>.</p>
<p>Since I am writing about <a href="http://www.okadadesign.no/blog/?p=1128">Codeigniter Shopping Cart series</a>, I am going to add the Quicksand to this application. It has already back-end facilities with <a href="http://www.kaydoo.co.uk/backendpro/user_guide/contents.html">BackendPro</a>. </p>
<p>The code is just duplicate of the original demo. I added product items in database with name, shortdesc, thumbnail, class and grouping.</p>
<div class="clearboth"></div>
<h4 class="download"><a href="http://www.okadadesign.no/blog/?page_id=1061#ciquicksand">Download Page</a></h4>
<h3>welcome.php controller</h3>
<p>Add the following to module/welcome/controllers/welcome.php.</p>
<pre class="brush: php; title: ; notranslate">
function quicksand(){
		$data['header']='Quicksand';
		$group = 'quicksand';
		$data['image_num']= $this-&gt;MQuicksand-&gt;getNumRowsByGroup($group);
		$data['images']= $this-&gt;MQuicksand-&gt;getProductsByGroup($group);
		$this-&gt;load-&gt;view('general/quicksand_temp',$data);
	}
</pre>
<p>I am not using Bep container, since this is just a quick demo. No module, just normal CI way of loading a view.<br />
I am going to use general/quicksand_temp.php for the view container. </p>
<h3>mquicksand.php</h3>
<p>In module/welcome/models/quicksand.php, only two functions. One for getting product details and another one is getting number of products.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class MQuicksand extends Model{
	 function MQuicksand(){
	 	parent::Model();
	 }

 	 function getProductsByGroup($group){
	     $data = array();
	     $this-&gt;db-&gt;where('grouping', $group);
	     $this-&gt;db-&gt;where('status', 'active');
	     // $this-&gt;db-&gt;orderby('name','asc');
	     $Q = $this-&gt;db-&gt;get('omc_product');
	     if ($Q-&gt;num_rows() &gt; 0){
	     	$num_rows = $Q-&gt;num_rows();
	       foreach ($Q-&gt;result_array() as $row){
	         $data[] = $row;
	       }
	    }
	    $Q-&gt;free_result();
	    return $data;
	    return $num_rows;
	 } 

	 function getNumRowsByGroup($group){
	     $data = array();
	     $this-&gt;db-&gt;where('grouping', $group);
	     $this-&gt;db-&gt;where('status', 'active');
	     // $this-&gt;db-&gt;orderby('name','asc');
	     $Q = $this-&gt;db-&gt;get('omc_product');
	     if ($Q-&gt;num_rows() &gt; 0){
	     	$num_rows = $Q-&gt;num_rows();
	    }
	    $Q-&gt;free_result();
	    return $num_rows;
	 }
}
</pre>
<h3>views</h3>
<p>I use two views for this in system/application/views/general folder.</p>
<p>quicksand_temp.php</p>
<pre class="brush: php; title: ; notranslate">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
	&lt;head&gt;
	&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
	  &lt;title&gt;jQuery Quicksand plugin on Codeigniter&lt;/title&gt;
	     &lt;link rel=&quot;stylesheet&quot; href=&quot;&lt;?= base_url();?&gt;assets/css/quicksand/qmain.css&quot; /&gt;
	    &lt;!--[if IE 7]&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;&lt;?= base_url();?&gt;assets/css/quicksand/ie7.css&quot; /&gt;&lt;![endif]--&gt;    

	    &lt;!-- DO NOT USE THESE FILES. they are compiled for fast http access --&gt;
	    &lt;!-- if you’re looking for source, download or read documentation --&gt;

	&lt;/head&gt;
  	&lt;body&gt;

    &lt;div id=&quot;wrapper&quot;&gt;
      &lt;div id=&quot;site&quot;&gt;
        &lt;div id=&quot;title&quot;&gt;
          &lt;h1&gt;Quicksand&lt;span&gt;&lt;/span&gt;&lt;/h1&gt;

          &lt;p&gt;Reorder and filter items with a nice shuffling animation.&lt;/p&gt;
        &lt;/div&gt;

        &lt;!-- this isn’t part of the plugin, just a control for demo --&gt;
        &lt;ul class=&quot;splitter&quot;&gt;
        	&lt;li&gt;Filter by type:
        		&lt;ul&gt;
        			&lt;li class=&quot;segment-1 selected-1&quot;&gt;&lt;a href=&quot;#&quot; data-value=&quot;all&quot;&gt;Everything&lt;/a&gt;&lt;/li&gt;
        			&lt;li class=&quot;segment-0&quot;&gt;&lt;a href=&quot;#&quot; data-value=&quot;app&quot;&gt;Applications&lt;/a&gt;&lt;/li&gt;
        			&lt;li class=&quot;segment-2&quot;&gt;&lt;a href=&quot;#&quot; data-value=&quot;util&quot;&gt;Utilities&lt;/a&gt;&lt;/li&gt;
        		&lt;/ul&gt;
        	&lt;/li&gt;
        	&lt;li&gt;Sort by:
        		&lt;ul&gt;
        			&lt;li class=&quot;segment-1 selected-1&quot;&gt;&lt;a href=&quot;#&quot; data-value=&quot;name&quot;&gt;Name&lt;/a&gt;&lt;/li&gt;
        			&lt;li class=&quot;segment-2&quot;&gt;&lt;a href=&quot;#&quot; data-value=&quot;size&quot;&gt;Size&lt;/a&gt;&lt;/li&gt;
        		&lt;/ul&gt;
        	&lt;/li&gt;
        &lt;/ul&gt;

        &lt;div class=&quot;demo&quot;&gt;
          &lt;!-- read the documentation to understand what’s going on here --&gt;

		&lt;?php $this-&gt;load-&gt;view('general/quicksand_view');?&gt;

        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;

    &lt;p class=&quot;footer&quot;&gt;
      &lt;span&gt;Powered by &lt;a href=&quot;http://jquery.com&quot;&gt;jQuery&lt;/a&gt; – Made by &lt;a href=&quot;http://twitter.com/razorjack&quot;&gt;@razorjack&lt;/a&gt;&lt;/span&gt;
      &lt;span&gt;Design by &lt;a href=&quot;http://twitter.com/riddle&quot;&gt;@riddle&lt;/a&gt;&lt;/span&gt;
    &lt;/p&gt;

   	&lt;script src=&quot;&lt;?= base_url();?&gt;assets/js/quicksand/jquery-1.4.1-and-plugins.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;&lt;?= base_url();?&gt;assets/js/quicksand/main.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
  	&lt;/body&gt;
  &lt;/html&gt;
</pre>
<p>quicksand_view.php</p>
<pre class="brush: php; title: ; notranslate">
          &lt;ul id=&quot;list&quot; class=&quot;image-grid&quot;&gt;
          &lt;?php 

          	foreach($images as $elem =&gt; $image){
  echo &quot;&lt;li data-id=\&quot;id-&quot;.($elem + 1).&quot;\&quot; data-type=\&quot;&quot;.$image['class'].
  &quot;\&quot;&gt;\n&lt;img src=\&quot;&quot;.base_url().$image['thumbnail'].
  &quot;\&quot; width=\&quot;128\&quot; height=\&quot;128\&quot; /&gt;\n&lt;strong&gt;&quot;.
  $image['name'].&quot;&lt;/strong&gt;\n&lt;span data-type=\&quot;size\&quot;&gt;&quot;.
  $image['shortdesc'].&quot;&lt;/span&gt;&lt;/li&gt;\n&quot;;
}

          ?&gt;
         &lt;/ul&gt;
</pre>
<p>That&#8217;s it.</p>
<h4 class="download"><a href="http://www.okadadesign.no/blog/?page_id=1061#ciquicksand">Download Page</a></h4>
<p>Download the file and unzip to your localhost.<br />
Dump ci_bep_quicksand.sql which is in sql folder.<br />
Modify system/application/config/config.php and database.php according to your environment.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.okadadesign.no/blog/jquery/jquery-quicksand-on-codeigniter/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Event Driven Programming with jQuery Tutorial</title>
		<link>http://www.okadadesign.no/blog/jquery/event-driven-programming-with-jquery-tutorial/</link>
		<comments>http://www.okadadesign.no/blog/jquery/event-driven-programming-with-jquery-tutorial/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 10:35:00 +0000</pubDate>
		<dc:creator>shinokada</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.okadadesign.no/blog/?p=55</guid>
		<description><![CDATA[ <p>Event Driven Programming with jQuery Tutorial. Written by Benson Wong </p> <p></p> <p>Related posts: Douglas Crockford: &#34;The JavaScript Programming Language&#34;/1 of 4 Event calendar using Codeigniter and jQuery without BackendPro Create an Event calendar using Codeigniter and jQuery </p>
Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/javascript/douglas-crockford-the-javascript-programming-language1-of-4/' rel='bookmark' title='Douglas Crockford: &quot;The JavaScript Programming Language&quot;/1 of 4'>Douglas Crockford: &quot;The JavaScript Programming Language&quot;/1 of 4</a></li>
<li><a href='http://www.okadadesign.no/blog/codeigniter/event-calendar-using-codeigniter-and-jquery-without-backendpro/' rel='bookmark' title='Event calendar using Codeigniter and jQuery without BackendPro'>Event calendar using Codeigniter and jQuery without BackendPro</a></li>
<li><a href='http://www.okadadesign.no/blog/codeigniter/create-an-event-calendar-using-codeigniter-and-jquery/' rel='bookmark' title='Create an Event calendar using Codeigniter and jQuery'>Create an Event calendar using Codeigniter and jQuery</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fevent-driven-programming-with-jquery-tutorial%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fevent-driven-programming-with-jquery-tutorial%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.mostlygeek.com/2009/03/31/event-driven-programming-with-jquery/">Event Driven Programming with jQuery Tutorial. Written by Benson Wong </a></p>
<p><embed src="http://blip.tv/play/AfeXTJW0fQ" type="application/x-shockwave-flash" width="480" height="383" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p>Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/javascript/douglas-crockford-the-javascript-programming-language1-of-4/' rel='bookmark' title='Douglas Crockford: &quot;The JavaScript Programming Language&quot;/1 of 4'>Douglas Crockford: &quot;The JavaScript Programming Language&quot;/1 of 4</a></li>
<li><a href='http://www.okadadesign.no/blog/codeigniter/event-calendar-using-codeigniter-and-jquery-without-backendpro/' rel='bookmark' title='Event calendar using Codeigniter and jQuery without BackendPro'>Event calendar using Codeigniter and jQuery without BackendPro</a></li>
<li><a href='http://www.okadadesign.no/blog/codeigniter/create-an-event-calendar-using-codeigniter-and-jquery/' rel='bookmark' title='Create an Event calendar using Codeigniter and jQuery'>Create an Event calendar using Codeigniter and jQuery</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.okadadesign.no/blog/jquery/event-driven-programming-with-jquery-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add jQuery Plugin: Scroll to Top to Blogger</title>
		<link>http://www.okadadesign.no/blog/jquery/how-to-add-jquery-plugin-scroll-to-top-to-blogger/</link>
		<comments>http://www.okadadesign.no/blog/jquery/how-to-add-jquery-plugin-scroll-to-top-to-blogger/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 13:40:00 +0000</pubDate>
		<dc:creator>shinokada</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.okadadesign.no/blog/?p=48</guid>
		<description><![CDATA[ <p> After reading an article &#8220;jQuery Plugin: Scroll to Top&#8221; by Craig Wilson a couple of weeks ago, here is how to add it to your Blogger.</p> <p>There is a similar code by David Walsh here. But I am using a code by Craig.</p> <p>You can see the action here. You just need [...]
Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/blogger/adding-tweet-button-to-your-blogger-and-website/' rel='bookmark' title='Adding Tweet Button to your Blogger and Website'>Adding Tweet Button to your Blogger and Website</a></li>
<li><a href='http://www.okadadesign.no/blog/blogger/add-your-twitter-updates-to-your-blogger/' rel='bookmark' title='Add your Twitter updates to your Blogger'>Add your Twitter updates to your Blogger</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/animated-menu-using-jquery-and-sprite/' rel='bookmark' title='Animated menu using jquery and sprite'>Animated menu using jquery and sprite</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fhow-to-add-jquery-plugin-scroll-to-top-to-blogger%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fhow-to-add-jquery-plugin-scroll-to-top-to-blogger%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img id="BLOGGER_PHOTO_ID_5318620283164470898" class="alignleft" width: 197px; height: 62px;  src="http://1.bp.blogspot.com/_UZHNmEAWYZU/Sc-I9-E0rnI/AAAAAAAAAJQ/BeTPl8RjuNM/s320/logo_jquery.png" /><br />
After reading an article <a href="http://blog.ph-creative.com/post/jQuery-Plugin-Scroll-to-Top.aspx">&#8220;jQuery Plugin: Scroll to Top&#8221; by Craig Wilson</a> a couple of weeks ago, here is how to add it to your Blogger.</p>
<p>There is a similar code by <a href="http://davidwalsh.name/jquery-top-link#top">David Walsh  here</a>. But I am using a code by Craig.</p>
<p>You can see the action <a href="http://shinokada.blogspot.com/2009/03/how-to-add-jquery-plugin-scroll-to-top.html" target="_blank" >here</a>. You just need to scroll down a bit and you will see a ^Scrol to Top box on the right bottom. By clicking it you go to the top of the page.</p>
<p>1. Add the following HTML before your &lt;/body&gt; tag.</p>
<div class="codesnip-container" >&lt;a href=&#8221;#&#8221; id=&#8221;toTop&#8221;&gt;^ Scroll to Top&lt;/a&gt;</div>
<p>2. Add the following CSS code in your Blogger CSS code.</p>
<div class="codesnip-container" >/* to top */<br />
#toTop { width:100px;background:#F4FFBF;border:1px solid #ccc;text-align:center;padding:5px;position:fixed;bottom:10px;right:10px;cursor:pointer;color:#666;text-decoration:none; }</div>
<p>3. Add the following jQuery codes just before &lt;/body&gt; tag.</p>
<div class="codesnip-container" >&lt;script src=&#8217;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&#8217; type=&#8217;text/javascript&#8217;&gt;&lt;/script&gt;<br />
&lt;script type=&#8217;text/javascript&#8217;&gt;<br />
/*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
* jQuery Plugin: Scroll to Top<br />
* by Craig Wilson, Ph.Creative (http://www.ph-creative.com)<br />
*<br />
* Copyright (c) 2009 Ph.Creative Ltd.<br />
* Description: Adds an unobtrusive &#8220;Scroll to Top&#8221; link to your page with smooth scrolling.<br />
* For usage instructions and version updates to go http://blog.ph-creative.com/post/jquery-plugin-scroll-to-top.aspx<br />
*<br />
* Version: 1.0, 12/03/2009<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;*/</p>
<p>$(function(){$.fn.scrollToTop=function(){$(this).hide().removeAttr(&#8220;href&#8221;);if($(window).scrollTop()!=&#8221;0&#8243;){$(this).fadeIn(&#8220;slow&#8221;)}var scrollDiv=$(this);$(window).scroll(function(){if($(window).scrollTop()==&#8221;0&#8243;){$(scrollDiv).fadeOut(&#8220;slow&#8221;)}else{$(scrollDiv).fadeIn(&#8220;slow&#8221;)}});$(this).click(function(){$(&#8220;html, body&#8221;).animate({scrollTop:0},&#8221;slow&#8221;)})}});</p>
<p>  $(function() {<br />
                $(&#8220;#toTop&#8221;).scrollToTop();<br />
            });<br />
        &lt;/script&gt;</p></div>
<p>Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/blogger/adding-tweet-button-to-your-blogger-and-website/' rel='bookmark' title='Adding Tweet Button to your Blogger and Website'>Adding Tweet Button to your Blogger and Website</a></li>
<li><a href='http://www.okadadesign.no/blog/blogger/add-your-twitter-updates-to-your-blogger/' rel='bookmark' title='Add your Twitter updates to your Blogger'>Add your Twitter updates to your Blogger</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/animated-menu-using-jquery-and-sprite/' rel='bookmark' title='Animated menu using jquery and sprite'>Animated menu using jquery and sprite</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.okadadesign.no/blog/jquery/how-to-add-jquery-plugin-scroll-to-top-to-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The undocumented life of jQuery .append()</title>
		<link>http://www.okadadesign.no/blog/jquery/the-undocumented-life-of-jquery-append/</link>
		<comments>http://www.okadadesign.no/blog/jquery/the-undocumented-life-of-jquery-append/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 08:49:00 +0000</pubDate>
		<dc:creator>shinokada</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.okadadesign.no/blog/?p=43</guid>
		<description><![CDATA[ <p>The undocumented life of jQuery&#8217;s .append()</p> <p>Posted using ShareThis</p> <p>Related posts: Add sharethis widget to your Blogger, WP or website sharethis_helper for CodeIgniter Social Bookmarking Button &#34;AddThis&#34; </p>
Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/blogger/add-sharethis-widget-to-your-blogger-wp-or-website/' rel='bookmark' title='Add sharethis widget to your Blogger, WP or website'>Add sharethis widget to your Blogger, WP or website</a></li>
<li><a href='http://www.okadadesign.no/blog/codeigniter/sharethis_helper-for-codeigniter/' rel='bookmark' title='sharethis_helper for CodeIgniter'>sharethis_helper for CodeIgniter</a></li>
<li><a href='http://www.okadadesign.no/blog/social-platform/social-bookmarking-button-addthis/' rel='bookmark' title='Social Bookmarking Button &quot;AddThis&quot;'>Social Bookmarking Button &quot;AddThis&quot;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fthe-undocumented-life-of-jquery-append%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fthe-undocumented-life-of-jquery-append%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href=http://welcome.totheinter.net/2009/03/19/the-undocumented-life-of-jquerys-append/>The undocumented life of jQuery&#8217;s .append()</a></p>
<p>Posted using <a href="http://sharethis.com">ShareThis</a></p>
<p>Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/blogger/add-sharethis-widget-to-your-blogger-wp-or-website/' rel='bookmark' title='Add sharethis widget to your Blogger, WP or website'>Add sharethis widget to your Blogger, WP or website</a></li>
<li><a href='http://www.okadadesign.no/blog/codeigniter/sharethis_helper-for-codeigniter/' rel='bookmark' title='sharethis_helper for CodeIgniter'>sharethis_helper for CodeIgniter</a></li>
<li><a href='http://www.okadadesign.no/blog/social-platform/social-bookmarking-button-addthis/' rel='bookmark' title='Social Bookmarking Button &quot;AddThis&quot;'>Social Bookmarking Button &quot;AddThis&quot;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.okadadesign.no/blog/jquery/the-undocumented-life-of-jquery-append/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Easy Display Switch with CSS and jQuery by By Soh Tanaka</title>
		<link>http://www.okadadesign.no/blog/jquery/easy-display-switch-with-css-and-jquery-by-by-soh-tanaka/</link>
		<comments>http://www.okadadesign.no/blog/jquery/easy-display-switch-with-css-and-jquery-by-by-soh-tanaka/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 21:52:00 +0000</pubDate>
		<dc:creator>shinokada</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.okadadesign.no/blog/?p=36</guid>
		<description><![CDATA[ <p>Easy Display Switch with CSS and jQuery is another image display for your portfolio. Simple and effective.You can see the demo here.</p> <p>Related posts: Creating a “Filterable” Portfolio with jQuery by Trevor Davis jquery.cookie.js plug-in Animated menu using jquery and sprite </p>
Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/jquery/creating-a-%e2%80%9cfilterable%e2%80%9d-portfolio-with-jquery-by-trevor-davis/' rel='bookmark' title='Creating a “Filterable” Portfolio with jQuery by Trevor Davis'>Creating a “Filterable” Portfolio with jQuery by Trevor Davis</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/jquerycookiejs-plug-in/' rel='bookmark' title='jquery.cookie.js plug-in'>jquery.cookie.js plug-in</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/animated-menu-using-jquery-and-sprite/' rel='bookmark' title='Animated menu using jquery and sprite'>Animated menu using jquery and sprite</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Feasy-display-switch-with-css-and-jquery-by-by-soh-tanaka%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Feasy-display-switch-with-css-and-jquery-by-by-soh-tanaka%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.sohtanaka.com/web-design/examples/display-switch/sample.jpg"><img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 475px; height: 300px;" src="http://www.sohtanaka.com/web-design/examples/display-switch/sample.jpg" border="0" alt="" /></a><br /><a href="http://designm.ag/tutorials/jquery-display-switch/">Easy Display Switch with CSS and jQuery</a> is another image display for your portfolio. Simple and effective.<br />You can see the <a href="http://www.sohtanaka.com/web-design/examples/display-switch/">demo here</a>.</p>
<p>Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/jquery/creating-a-%e2%80%9cfilterable%e2%80%9d-portfolio-with-jquery-by-trevor-davis/' rel='bookmark' title='Creating a “Filterable” Portfolio with jQuery by Trevor Davis'>Creating a “Filterable” Portfolio with jQuery by Trevor Davis</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/jquerycookiejs-plug-in/' rel='bookmark' title='jquery.cookie.js plug-in'>jquery.cookie.js plug-in</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/animated-menu-using-jquery-and-sprite/' rel='bookmark' title='Animated menu using jquery and sprite'>Animated menu using jquery and sprite</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.okadadesign.no/blog/jquery/easy-display-switch-with-css-and-jquery-by-by-soh-tanaka/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a “Filterable” Portfolio with jQuery by Trevor Davis</title>
		<link>http://www.okadadesign.no/blog/jquery/creating-a-%e2%80%9cfilterable%e2%80%9d-portfolio-with-jquery-by-trevor-davis/</link>
		<comments>http://www.okadadesign.no/blog/jquery/creating-a-%e2%80%9cfilterable%e2%80%9d-portfolio-with-jquery-by-trevor-davis/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 06:55:00 +0000</pubDate>
		<dc:creator>shinokada</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.okadadesign.no/blog/?p=35</guid>
		<description><![CDATA[ <p>Trevor Davis wrote a tutorial called &#8220;Creating a “Filterable” Portfolio with jQuery&#8221; in nettuts.comYou can find a demo here.You can use it for a customer&#8217;s portfolio and add a jquery lightbox.</p> <p>Related posts: Creating a Scrolling Gallery Using jQuery How to install Portfolio CMS, Ninjin Easy Display Switch with CSS and jQuery by By Soh Tanaka
</p>
Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/jquery/creating-a-scrolling-gallery-using-jquery/' rel='bookmark' title='Creating a Scrolling Gallery Using jQuery'>Creating a Scrolling Gallery Using jQuery</a></li>
<li><a href='http://www.okadadesign.no/blog/codeigniter/how-to-install-portfolio-cms/' rel='bookmark' title='How to install Portfolio CMS, Ninjin'>How to install Portfolio CMS, Ninjin</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/easy-display-switch-with-css-and-jquery-by-by-soh-tanaka/' rel='bookmark' title='Easy Display Switch with CSS and jQuery by By Soh Tanaka'>Easy Display Switch with CSS and jQuery by By Soh Tanaka</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fcreating-a-%25e2%2580%259cfilterable%25e2%2580%259d-portfolio-with-jquery-by-trevor-davis%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fcreating-a-%25e2%2580%259cfilterable%25e2%2580%259d-portfolio-with-jquery-by-trevor-davis%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://nettuts.s3.amazonaws.com/196_jquery/images/portfolio-thumb.jpg"><img style="display:block; margin:0 10px 10px 0; text-align:center;cursor:pointer; cursor:hand;width: 200px; height: 200px;" src="http://nettuts.s3.amazonaws.com/196_jquery/images/portfolio-thumb.jpg" border="0" alt="" /></a>Trevor Davis wrote a tutorial called &#8220;Creating a “<a href="http://nettuts.com/tutorials/javascript-ajax/creating-a-filterable-portfolio-with-jquery/">Filterable” Portfolio with jQuery</a>&#8221; in nettuts.com<br />You can find a <a href="http://nettuts.s3.amazonaws.com/196_jquery/index.htm">demo here</a>.<br />You can use it for a customer&#8217;s portfolio and add a jquery lightbox.</p>
<p>Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/jquery/creating-a-scrolling-gallery-using-jquery/' rel='bookmark' title='Creating a Scrolling Gallery Using jQuery'>Creating a Scrolling Gallery Using jQuery</a></li>
<li><a href='http://www.okadadesign.no/blog/codeigniter/how-to-install-portfolio-cms/' rel='bookmark' title='How to install Portfolio CMS, Ninjin'>How to install Portfolio CMS, Ninjin</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/easy-display-switch-with-css-and-jquery-by-by-soh-tanaka/' rel='bookmark' title='Easy Display Switch with CSS and jQuery by By Soh Tanaka'>Easy Display Switch with CSS and jQuery by By Soh Tanaka</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.okadadesign.no/blog/jquery/creating-a-%e2%80%9cfilterable%e2%80%9d-portfolio-with-jquery-by-trevor-davis/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery Accessible Tabs &#8211; How to make tabs REALLY accessible by Dirk Ginader</title>
		<link>http://www.okadadesign.no/blog/jquery/jquery-accessible-tabs-how-to-make-tabs-really-accessible-by-dirk-ginader/</link>
		<comments>http://www.okadadesign.no/blog/jquery/jquery-accessible-tabs-how-to-make-tabs-really-accessible-by-dirk-ginader/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 20:43:00 +0000</pubDate>
		<dc:creator>shinokada</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.okadadesign.no/blog/?p=33</guid>
		<description><![CDATA[ <p>Improved version of jquery tab by Dirk Ginader.</p> <p>Related posts: &#34;How to Make a Smooth Animated Menu with jQuery&#34; by Zach Dunn </p>
Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/jquery/how-to-make-a-smooth-animated-menu-with-jquery-by-zach-dunn/' rel='bookmark' title='&quot;How to Make a Smooth Animated Menu with jQuery&quot; by Zach Dunn'>&quot;How to Make a Smooth Animated Menu with jQuery&quot; by Zach Dunn</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fjquery-accessible-tabs-how-to-make-tabs-really-accessible-by-dirk-ginader%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fjquery-accessible-tabs-how-to-make-tabs-really-accessible-by-dirk-ginader%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Improved version of jquery tab by <a href="http://blog.ginader.de/archives/2009/02/07/jQuery-Accessible-Tabs-How-to-make-tabs-REALLY-accessible.php">Dirk Ginader</a>.</p>
<p>Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/jquery/how-to-make-a-smooth-animated-menu-with-jquery-by-zach-dunn/' rel='bookmark' title='&quot;How to Make a Smooth Animated Menu with jQuery&quot; by Zach Dunn'>&quot;How to Make a Smooth Animated Menu with jQuery&quot; by Zach Dunn</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.okadadesign.no/blog/jquery/jquery-accessible-tabs-how-to-make-tabs-really-accessible-by-dirk-ginader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Animation &#8211; Sliding In and Out, Up and Down</title>
		<link>http://www.okadadesign.no/blog/jquery/jquery-animation-sliding-in-and-out-up-and-down/</link>
		<comments>http://www.okadadesign.no/blog/jquery/jquery-animation-sliding-in-and-out-up-and-down/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 10:54:00 +0000</pubDate>
		<dc:creator>shinokada</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.okadadesign.no/blog/?p=30</guid>
		<description><![CDATA[ <p>Video tutorial from Vimeo.jQuery Animation &#8211; Sliding In and Out, Up and Down from Jack Franklin on Vimeo.</p> <p>Related posts: Jquery videos from Ajaxian Creating a Scrolling Gallery Using jQuery jquery plug-in, easing </p>
Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/jquery/jquery-videos-from-ajaxian/' rel='bookmark' title='Jquery videos from Ajaxian'>Jquery videos from Ajaxian</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/creating-a-scrolling-gallery-using-jquery/' rel='bookmark' title='Creating a Scrolling Gallery Using jQuery'>Creating a Scrolling Gallery Using jQuery</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/jquery-plug-in-easing/' rel='bookmark' title='jquery plug-in, easing'>jquery plug-in, easing</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fjquery-animation-sliding-in-and-out-up-and-down%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fjquery-animation-sliding-in-and-out-up-and-down%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Video tutorial from <a href="http://vimeo.com/3407534?pg=embed&#038;sec=">Vimeo</a>.<br /><object width="400" height="352"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3407534&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=3407534&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="360" height="316"></embed></object><br /><a href="http://vimeo.com/3407534">jQuery Animation &#8211; Sliding In and Out, Up and Down</a> from <a href="http://vimeo.com/user1197553">Jack Franklin</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/jquery/jquery-videos-from-ajaxian/' rel='bookmark' title='Jquery videos from Ajaxian'>Jquery videos from Ajaxian</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/creating-a-scrolling-gallery-using-jquery/' rel='bookmark' title='Creating a Scrolling Gallery Using jQuery'>Creating a Scrolling Gallery Using jQuery</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/jquery-plug-in-easing/' rel='bookmark' title='jquery plug-in, easing'>jquery plug-in, easing</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.okadadesign.no/blog/jquery/jquery-animation-sliding-in-and-out-up-and-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Scrolling Gallery Using jQuery</title>
		<link>http://www.okadadesign.no/blog/jquery/creating-a-scrolling-gallery-using-jquery/</link>
		<comments>http://www.okadadesign.no/blog/jquery/creating-a-scrolling-gallery-using-jquery/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 10:38:00 +0000</pubDate>
		<dc:creator>shinokada</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.okadadesign.no/blog/?p=29</guid>
		<description><![CDATA[ <p>Video tutorial from From-the-couch </p> <p></p> <p>Related posts: Jquery videos from Ajaxian Creating a “Filterable” Portfolio with jQuery by Trevor Davis jQuery Animation &#8211; Sliding In and Out, Up and Down </p>
Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/jquery/jquery-videos-from-ajaxian/' rel='bookmark' title='Jquery videos from Ajaxian'>Jquery videos from Ajaxian</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/creating-a-%e2%80%9cfilterable%e2%80%9d-portfolio-with-jquery-by-trevor-davis/' rel='bookmark' title='Creating a “Filterable” Portfolio with jQuery by Trevor Davis'>Creating a “Filterable” Portfolio with jQuery by Trevor Davis</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/jquery-animation-sliding-in-and-out-up-and-down/' rel='bookmark' title='jQuery Animation &#8211; Sliding In and Out, Up and Down'>jQuery Animation &#8211; Sliding In and Out, Up and Down</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fcreating-a-scrolling-gallery-using-jquery%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Fcreating-a-scrolling-gallery-using-jquery%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Video tutorial from <a href="http://www.from-the-couch.com/post.cfm/title/creating-a-scrolling-gallery-using-jquery">From-the-couch</a> </p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="370" id="viddler"><param name="movie" value="http://www.viddler.com/player/c640645e/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"/><embed src="http://www.viddler.com/player/c640645e/" width="393" height="333" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" wmode="transparent" name="viddler" ></embed></object></p>
<p>Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/jquery/jquery-videos-from-ajaxian/' rel='bookmark' title='Jquery videos from Ajaxian'>Jquery videos from Ajaxian</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/creating-a-%e2%80%9cfilterable%e2%80%9d-portfolio-with-jquery-by-trevor-davis/' rel='bookmark' title='Creating a “Filterable” Portfolio with jQuery by Trevor Davis'>Creating a “Filterable” Portfolio with jQuery by Trevor Davis</a></li>
<li><a href='http://www.okadadesign.no/blog/jquery/jquery-animation-sliding-in-and-out-up-and-down/' rel='bookmark' title='jQuery Animation &#8211; Sliding In and Out, Up and Down'>jQuery Animation &#8211; Sliding In and Out, Up and Down</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.okadadesign.no/blog/jquery/creating-a-scrolling-gallery-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Organizing a long list with jQuery: ihwy version</title>
		<link>http://www.okadadesign.no/blog/jquery/organizing-a-long-list-with-jquery-ihwy-version/</link>
		<comments>http://www.okadadesign.no/blog/jquery/organizing-a-long-list-with-jquery-ihwy-version/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 12:11:00 +0000</pubDate>
		<dc:creator>shinokada</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.okadadesign.no/blog/?p=25</guid>
		<description><![CDATA[ <p>I found a jquery listnav plugin.</p> <p>When I see the demo, it is a bit confusing with other functions, like tabs etc., and there are no zip files. So I put it one by one in order to simplify it. You can find listnav1listnav2listnav3listnav4</p> <p>I can&#8217;t find out how to make listnav3 red [...]
Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/jquery/jquery-menu-snook-version/' rel='bookmark' title='jQuery menu- snook version'>jQuery menu- snook version</a></li>
<li><a href='http://www.okadadesign.no/blog/kaimono-kago/kaimonokago-version-1-1-4-beta-released/' rel='bookmark' title='Kaimonokago version 1.1.4 Beta released'>Kaimonokago version 1.1.4 Beta released</a></li>
<li><a href='http://www.okadadesign.no/blog/ie/three-column-layout/' rel='bookmark' title='Three column layout which works with long contents in any column'>Three column layout which works with long contents in any column</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Forganizing-a-long-list-with-jquery-ihwy-version%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.okadadesign.no%2Fblog%2Fjquery%2Forganizing-a-long-list-with-jquery-ihwy-version%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I found a <a href="http://www.ihwy.com/Labs/jquery-listnav-plugin.aspx">jquery listnav plugin</a>.</p>
<p>When I see the demo, it is a bit confusing with other functions, like tabs etc., and there are no zip files. So I put it one by one in order to simplify it. <br />You can find <br /><a href="http://www.okadadesign.no/jquery/listnav/mylist1.html">listnav1</a><br /><a href="http://www.okadadesign.no/jquery/listnav/mylist2a.html">listnav2</a><br /><a href="http://www.okadadesign.no/jquery/listnav/mylist3.html">listnav3</a><br /><a href="http://www.okadadesign.no/jquery/listnav/mylist4.html">listnav4</a></p>
<p>I can&#8217;t find out how to make listnav3 red yet. And also I haven&#8217;t find out why the right side of listnav3 is not showing.</p>
<p>Related posts:<ol>
<li><a href='http://www.okadadesign.no/blog/jquery/jquery-menu-snook-version/' rel='bookmark' title='jQuery menu- snook version'>jQuery menu- snook version</a></li>
<li><a href='http://www.okadadesign.no/blog/kaimono-kago/kaimonokago-version-1-1-4-beta-released/' rel='bookmark' title='Kaimonokago version 1.1.4 Beta released'>Kaimonokago version 1.1.4 Beta released</a></li>
<li><a href='http://www.okadadesign.no/blog/ie/three-column-layout/' rel='bookmark' title='Three column layout which works with long contents in any column'>Three column layout which works with long contents in any column</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.okadadesign.no/blog/jquery/organizing-a-long-list-with-jquery-ihwy-version/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

