<?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/"
		>
<channel>
	<title>Comments on: Rich, accessible pagination with unobtrusive javascript</title>
	<atom:link href="http://ajaxian.com/archives/rich-accessible-pagination-with-unobtrusive-javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/rich-accessible-pagination-with-unobtrusive-javascript</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 17 May 2012 07:43:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Philip Tellis</title>
		<link>http://ajaxian.com/archives/rich-accessible-pagination-with-unobtrusive-javascript/comment-page-1#comment-246459</link>
		<dc:creator>Philip Tellis</dc:creator>
		<pubDate>Wed, 24 Jan 2007 02:00:26 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/rich-accessible-pagination-with-unobtrusive-javascript#comment-246459</guid>
		<description>Mohamed, I&#039;m not sure what you&#039;re confused about.  There are two occurrences of the variable json in the code, one in php and one in javascript.  Both have declarations and definitions right in the code:

php:
$json = array(&#039;n&#039;=&gt;$num_pages, &#039;p&#039;=&gt;$pg, &#039;l&#039; =&gt; array());

javascript:
var json = eval(&quot;(&quot; + o.responseText + &quot;)&quot;) ;

The article also links to a working example (http://allyjack.sourceforge.net/pagination/pagination.php) of the code where you can get the complete code.

Hope this explains your doubt.</description>
		<content:encoded><![CDATA[<p>Mohamed, I&#8217;m not sure what you&#8217;re confused about.  There are two occurrences of the variable json in the code, one in php and one in javascript.  Both have declarations and definitions right in the code:</p>
<p>php:<br />
$json = array(&#8216;n&#8217;=&gt;$num_pages, &#8216;p&#8217;=&gt;$pg, &#8216;l&#8217; =&gt; array());</p>
<p>javascript:<br />
var json = eval(&#8220;(&#8221; + o.responseText + &#8220;)&#8221;) ;</p>
<p>The article also links to a working example (<a href="http://allyjack.sourceforge.net/pagination/pagination.php" rel="nofollow">http://allyjack.sourceforge.net/pagination/pagination.php</a>) of the code where you can get the complete code.</p>
<p>Hope this explains your doubt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mohamed Farook</title>
		<link>http://ajaxian.com/archives/rich-accessible-pagination-with-unobtrusive-javascript/comment-page-1#comment-246395</link>
		<dc:creator>Mohamed Farook</dc:creator>
		<pubDate>Mon, 22 Jan 2007 12:21:15 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/rich-accessible-pagination-with-unobtrusive-javascript#comment-246395</guid>
		<description>This is a stupid and brainless way to explain the code to the user. I could not use this code because here he did not give full code and proper explanation. For example here he has used a word &quot;json&quot;, but how can the user knows that. what is that and where we get that variable, all the details he has to produced. So plz Dont submit the code with not understandable format. Its a waste of time for the user.</description>
		<content:encoded><![CDATA[<p>This is a stupid and brainless way to explain the code to the user. I could not use this code because here he did not give full code and proper explanation. For example here he has used a word &#8220;json&#8221;, but how can the user knows that. what is that and where we get that variable, all the details he has to produced. So plz Dont submit the code with not understandable format. Its a waste of time for the user.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vikas</title>
		<link>http://ajaxian.com/archives/rich-accessible-pagination-with-unobtrusive-javascript/comment-page-1#comment-38385</link>
		<dc:creator>vikas</dc:creator>
		<pubDate>Thu, 29 Jun 2006 08:56:29 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/rich-accessible-pagination-with-unobtrusive-javascript#comment-38385</guid>
		<description>hgfghfghfghfg</description>
		<content:encoded><![CDATA[<p>hgfghfghfghfg</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hgfh</title>
		<link>http://ajaxian.com/archives/rich-accessible-pagination-with-unobtrusive-javascript/comment-page-1#comment-13187</link>
		<dc:creator>hgfh</dc:creator>
		<pubDate>Tue, 23 May 2006 12:28:47 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/rich-accessible-pagination-with-unobtrusive-javascript#comment-13187</guid>
		<description>asddadadaf</description>
		<content:encoded><![CDATA[<p>asddadadaf</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://ajaxian.com/archives/rich-accessible-pagination-with-unobtrusive-javascript/comment-page-1#comment-3983</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Fri, 24 Feb 2006 17:44:30 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/rich-accessible-pagination-with-unobtrusive-javascript#comment-3983</guid>
		<description>This is rather interesting to me, as I&#039;ve been thinking about implementing the same thing for an application I work on. I was thinking, though, that it would probably be advantageous to cache those pages that can be got to in 1 step from the current page (i.e. first, last, next and previous in a typical paging setup) so as to provide pretty much instantaneous &#039;page loads&#039; even over a slower connection. This looks like it will be a good starting point.</description>
		<content:encoded><![CDATA[<p>This is rather interesting to me, as I&#8217;ve been thinking about implementing the same thing for an application I work on. I was thinking, though, that it would probably be advantageous to cache those pages that can be got to in 1 step from the current page (i.e. first, last, next and previous in a typical paging setup) so as to provide pretty much instantaneous &#8216;page loads&#8217; even over a slower connection. This looks like it will be a good starting point.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

