<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Pajinate &#8211; A jQuery Pagination Plugin</title>
	<atom:link href="http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/</link>
	<description>A developer&#039;s view of Cloud Computing platforms &#38; technologies.</description>
	<lastBuildDate>Fri, 18 May 2012 17:29:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: prasofty</title>
		<link>http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/#comment-1849</link>
		<dc:creator><![CDATA[prasofty]]></dc:creator>
		<pubDate>Thu, 17 May 2012 05:30:59 +0000</pubDate>
		<guid isPermaLink="false">http://developinthecloud.wordpress.com/?p=609#comment-1849</guid>
		<description><![CDATA[Hey I am using pajinate plugin it works fine. Is their way to reset pagination after applying data manipulation like sort or filtering the list items.]]></description>
		<content:encoded><![CDATA[<p>Hey I am using pajinate plugin it works fine. Is their way to reset pagination after applying data manipulation like sort or filtering the list items.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete (@crazywhistlepig)</title>
		<link>http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/#comment-1846</link>
		<dc:creator><![CDATA[Pete (@crazywhistlepig)]]></dc:creator>
		<pubDate>Tue, 15 May 2012 20:18:17 +0000</pubDate>
		<guid isPermaLink="false">http://developinthecloud.wordpress.com/?p=609#comment-1846</guid>
		<description><![CDATA[Actually, I&#039;ve used HTML5 sessionStorage to retreive the current page. Use sessionStorage.setItem(&#039;curPage&#039;,page_num); added to jquery.pajinate.js in function gotopage() (just before toggleMoreLess();) and it works like a champ. Just use sessionStorage.curPage to retreive it. See here: http://code.google.com/p/sessionstorage/ 

May be a good add to the base code, eh Wes? Just as a perk? :)]]></description>
		<content:encoded><![CDATA[<p>Actually, I&#8217;ve used HTML5 sessionStorage to retreive the current page. Use sessionStorage.setItem(&#8216;curPage&#8217;,page_num); added to jquery.pajinate.js in function gotopage() (just before toggleMoreLess();) and it works like a champ. Just use sessionStorage.curPage to retreive it. See here: <a href="http://code.google.com/p/sessionstorage/" rel="nofollow">http://code.google.com/p/sessionstorage/</a> </p>
<p>May be a good add to the base code, eh Wes? Just as a perk? <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wes</title>
		<link>http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/#comment-1837</link>
		<dc:creator><![CDATA[Wes]]></dc:creator>
		<pubDate>Fri, 11 May 2012 11:10:53 +0000</pubDate>
		<guid isPermaLink="false">http://developinthecloud.wordpress.com/?p=609#comment-1837</guid>
		<description><![CDATA[Thanks for the tips Joel :)]]></description>
		<content:encoded><![CDATA[<p>Thanks for the tips Joel <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel</title>
		<link>http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/#comment-1829</link>
		<dc:creator><![CDATA[Joel]]></dc:creator>
		<pubDate>Thu, 10 May 2012 17:34:12 +0000</pubDate>
		<guid isPermaLink="false">http://developinthecloud.wordpress.com/?p=609#comment-1829</guid>
		<description><![CDATA[Forgot to add in my last post, if your using lazy load I also needed to add $(&quot;body&quot;).trigger(&quot;scroll&quot;); at the bottom of all the functions handling the pages e.g showNextPage]]></description>
		<content:encoded><![CDATA[<p>Forgot to add in my last post, if your using lazy load I also needed to add $(&#8220;body&#8221;).trigger(&#8220;scroll&#8221;); at the bottom of all the functions handling the pages e.g showNextPage</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel Davey</title>
		<link>http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/#comment-1828</link>
		<dc:creator><![CDATA[Joel Davey]]></dc:creator>
		<pubDate>Thu, 10 May 2012 15:33:39 +0000</pubDate>
		<guid isPermaLink="false">http://developinthecloud.wordpress.com/?p=609#comment-1828</guid>
		<description><![CDATA[For those of you paging lots of results specifically with images, a workaround to prevent modifiying the script to dynamically load results is to use http://www.appelsiini.net/projects/lazyload

Which only loads visible images works perfectly with this plugin.]]></description>
		<content:encoded><![CDATA[<p>For those of you paging lots of results specifically with images, a workaround to prevent modifiying the script to dynamically load results is to use <a href="http://www.appelsiini.net/projects/lazyload" rel="nofollow">http://www.appelsiini.net/projects/lazyload</a></p>
<p>Which only loads visible images works perfectly with this plugin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: - 虾子酱油学习网页设计</title>
		<link>http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/#comment-1807</link>
		<dc:creator><![CDATA[- 虾子酱油学习网页设计]]></dc:creator>
		<pubDate>Tue, 08 May 2012 11:56:42 +0000</pubDate>
		<guid isPermaLink="false">http://developinthecloud.wordpress.com/?p=609#comment-1807</guid>
		<description><![CDATA[[...] Pajinate – A jQuery Pagination Plugin [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Pajinate – A jQuery Pagination Plugin [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 11 jQuery Pagination Plugins you must try &#171; CSS Tips</title>
		<link>http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/#comment-1740</link>
		<dc:creator><![CDATA[11 jQuery Pagination Plugins you must try &#171; CSS Tips]]></dc:creator>
		<pubDate>Thu, 19 Apr 2012 17:27:52 +0000</pubDate>
		<guid isPermaLink="false">http://developinthecloud.wordpress.com/?p=609#comment-1740</guid>
		<description><![CDATA[[...] 2. Pajinate – A jQuery Pagination Plugin [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 2. Pajinate – A jQuery Pagination Plugin [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 11 jQuery Pagination Plugins you must try &#171; Swadesh&#039;s Programming Blog</title>
		<link>http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/#comment-1739</link>
		<dc:creator><![CDATA[11 jQuery Pagination Plugins you must try &#171; Swadesh&#039;s Programming Blog]]></dc:creator>
		<pubDate>Thu, 19 Apr 2012 16:34:19 +0000</pubDate>
		<guid isPermaLink="false">http://developinthecloud.wordpress.com/?p=609#comment-1739</guid>
		<description><![CDATA[[...] [...]]]></description>
		<content:encoded><![CDATA[<p>[...] [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wes</title>
		<link>http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/#comment-1710</link>
		<dc:creator><![CDATA[Wes]]></dc:creator>
		<pubDate>Sat, 14 Apr 2012 18:02:17 +0000</pubDate>
		<guid isPermaLink="false">http://developinthecloud.wordpress.com/?p=609#comment-1710</guid>
		<description><![CDATA[Looks good :) Thanks for the link.]]></description>
		<content:encoded><![CDATA[<p>Looks good <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Thanks for the link.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Navin Kunwar</title>
		<link>http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/#comment-1709</link>
		<dc:creator><![CDATA[Navin Kunwar]]></dc:creator>
		<pubDate>Sat, 14 Apr 2012 17:44:05 +0000</pubDate>
		<guid isPermaLink="false">http://developinthecloud.wordpress.com/?p=609#comment-1709</guid>
		<description><![CDATA[Awesome post , but i found another plugin &quot; jPages jQuery Plugin&quot; withe more features. the short post goes here  &lt;a href=&quot;http://itinfoz.com/creating-client-side-pagination-with-jpages-jquery-plugin/2785&quot; rel=&quot;nofollow&quot;&gt; Creating Client-side Pagination with jPages jQuery Plugin&lt;/a&gt; hope you will like to see. thanks]]></description>
		<content:encoded><![CDATA[<p>Awesome post , but i found another plugin &#8221; jPages jQuery Plugin&#8221; withe more features. the short post goes here  <a href="http://itinfoz.com/creating-client-side-pagination-with-jpages-jquery-plugin/2785" rel="nofollow"> Creating Client-side Pagination with jPages jQuery Plugin</a> hope you will like to see. thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

