<?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: A Better Scrollable Component, Using jQuery</title>
	<atom:link href="http://ajaxian.com/archives/a-better-scrollable-component-using-jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/a-better-scrollable-component-using-jquery</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: ThomasHansen</title>
		<link>http://ajaxian.com/archives/a-better-scrollable-component-using-jquery/comment-page-1#comment-268742</link>
		<dc:creator>ThomasHansen</dc:creator>
		<pubDate>Fri, 07 Nov 2008 02:05:05 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4957#comment-268742</guid>
		<description>Quite cool and nice looking, liked that it&#039;s less than 4KB of JS, though the sample is NOT XHTML compliant (HTML validator complains) - which I think may be due to missing href attributes or something...
.
Apart from than, quite nice and good looking... :)</description>
		<content:encoded><![CDATA[<p>Quite cool and nice looking, liked that it&#8217;s less than 4KB of JS, though the sample is NOT XHTML compliant (HTML validator complains) &#8211; which I think may be due to missing href attributes or something&#8230;<br />
.<br />
Apart from than, quite nice and good looking&#8230; :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joeri</title>
		<link>http://ajaxian.com/archives/a-better-scrollable-component-using-jquery/comment-page-1#comment-268678</link>
		<dc:creator>Joeri</dc:creator>
		<pubDate>Wed, 05 Nov 2008 09:03:46 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4957#comment-268678</guid>
		<description>Some more suggestions:
- Don&#039;t &quot;cache&quot; click events. When I hammer the down button to get the thing to move to where I want, and I stop clicking, the scroller also needs to stop moving immediately.
- When clicking during a scroll, either speed up the animation, or skip it altogether, because it indicates the user is impatient and doesn&#039;t want to wait until the end of the animation.
- When holding down the mouse button on the up/down buttons, keep scrolling.
.
@naterkane: don&#039;t take all the criticism too personally. Most components that come on ajaxian get absolutely trashed in the comments. We&#039;re all great at armchair coding.</description>
		<content:encoded><![CDATA[<p>Some more suggestions:<br />
- Don&#8217;t &#8220;cache&#8221; click events. When I hammer the down button to get the thing to move to where I want, and I stop clicking, the scroller also needs to stop moving immediately.<br />
- When clicking during a scroll, either speed up the animation, or skip it altogether, because it indicates the user is impatient and doesn&#8217;t want to wait until the end of the animation.<br />
- When holding down the mouse button on the up/down buttons, keep scrolling.<br />
.<br />
@naterkane: don&#8217;t take all the criticism too personally. Most components that come on ajaxian get absolutely trashed in the comments. We&#8217;re all great at armchair coding.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: naterkane</title>
		<link>http://ajaxian.com/archives/a-better-scrollable-component-using-jquery/comment-page-1#comment-268677</link>
		<dc:creator>naterkane</dc:creator>
		<pubDate>Wed, 05 Nov 2008 06:46:19 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4957#comment-268677</guid>
		<description>it&#039;s doesn&#039;t require the mousewheel plugin. but if someone wants to make it available, it works and that interaction is supported. did any of you read the source? my guess is no.</description>
		<content:encoded><![CDATA[<p>it&#8217;s doesn&#8217;t require the mousewheel plugin. but if someone wants to make it available, it works and that interaction is supported. did any of you read the source? my guess is no.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eyelidlessness</title>
		<link>http://ajaxian.com/archives/a-better-scrollable-component-using-jquery/comment-page-1#comment-268671</link>
		<dc:creator>eyelidlessness</dc:creator>
		<pubDate>Tue, 04 Nov 2008 22:13:13 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4957#comment-268671</guid>
		<description>This isn&#039;t a bad idea, it&#039;s just not a very good implementation. It has no support, for example, for acceleration, which is an absolute must when hijacking the scroll wheel.

It&#039;s also important to note that tying behavior specifically to a scroll wheel is a usability nightmare for people who don&#039;t have a scroll wheel (having up/down thumbs does not make up for the lack of a slider thumb).</description>
		<content:encoded><![CDATA[<p>This isn&#8217;t a bad idea, it&#8217;s just not a very good implementation. It has no support, for example, for acceleration, which is an absolute must when hijacking the scroll wheel.</p>
<p>It&#8217;s also important to note that tying behavior specifically to a scroll wheel is a usability nightmare for people who don&#8217;t have a scroll wheel (having up/down thumbs does not make up for the lack of a slider thumb).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: naterkane</title>
		<link>http://ajaxian.com/archives/a-better-scrollable-component-using-jquery/comment-page-1#comment-268664</link>
		<dc:creator>naterkane</dc:creator>
		<pubDate>Tue, 04 Nov 2008 19:38:09 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4957#comment-268664</guid>
		<description>@generallyloud

The mousewheel support just piggybacked the separate jquery.mousewheel.js plugin that I did not write. it&#039;s caveats are not something I could be responsible for.

This plugin came from a real world project, that had specific requirements, and would have been done slightly different if i had spent more than 2-3 hours writing it.

The speed of the scrolling is not fixed, but is variable and can be set with a parameter. What your experience was, in almost every way, can be adjusted with a few changes to the parameters that are set when the code is invoked.</description>
		<content:encoded><![CDATA[<p>@generallyloud</p>
<p>The mousewheel support just piggybacked the separate jquery.mousewheel.js plugin that I did not write. it&#8217;s caveats are not something I could be responsible for.</p>
<p>This plugin came from a real world project, that had specific requirements, and would have been done slightly different if i had spent more than 2-3 hours writing it.</p>
<p>The speed of the scrolling is not fixed, but is variable and can be set with a parameter. What your experience was, in almost every way, can be adjusted with a few changes to the parameters that are set when the code is invoked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Galbraith</title>
		<link>http://ajaxian.com/archives/a-better-scrollable-component-using-jquery/comment-page-1#comment-268654</link>
		<dc:creator>Ben Galbraith</dc:creator>
		<pubDate>Tue, 04 Nov 2008 17:08:49 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4957#comment-268654</guid>
		<description>@ilazarte: Because we usually write the posts in the wee hours of the morning when we&#039;re dead tired. ;-) I&#039;ve fixed the second link, sorry about that.</description>
		<content:encoded><![CDATA[<p>@ilazarte: Because we usually write the posts in the wee hours of the morning when we&#8217;re dead tired. ;-) I&#8217;ve fixed the second link, sorry about that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ilazarte</title>
		<link>http://ajaxian.com/archives/a-better-scrollable-component-using-jquery/comment-page-1#comment-268651</link>
		<dc:creator>ilazarte</dc:creator>
		<pubDate>Tue, 04 Nov 2008 16:14:42 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4957#comment-268651</guid>
		<description>link broken yet again.

why is ajaxian so bad at pasting links into a blog body?</description>
		<content:encoded><![CDATA[<p>link broken yet again.</p>
<p>why is ajaxian so bad at pasting links into a blog body?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

