<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: jQuery - making scrolling and toggling simple</title>
	<link>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/</link>
	<description>Dev related notes, tutorials and anecdotes</description>
	<pubDate>Mon, 08 Sep 2008 16:20:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: bhaarat</title>
		<link>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-88</link>
		<dc:creator>bhaarat</dc:creator>
		<pubDate>Wed, 12 Dec 2007 18:32:24 +0000</pubDate>
		<guid>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-88</guid>
		<description>How about a demo about 'load on scroll' or 'pageless scrolling' 

example at www.dzone.com and just try to scroll down on the page. pretty neat!</description>
		<content:encoded><![CDATA[<p>How about a demo about &#8216;load on scroll&#8217; or &#8216;pageless scrolling&#8217; </p>
<p>example at <a href="http://www.dzone.com" rel="nofollow">http://www.dzone.com</a> and just try to scroll down on the page. pretty neat!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bhaarat</title>
		<link>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-1512</link>
		<dc:creator>bhaarat</dc:creator>
		<pubDate>Wed, 12 Dec 2007 18:32:24 +0000</pubDate>
		<guid>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-1512</guid>
		<description>How about a demo about &#39;load on scroll&#39; or &#39;pageless scrolling&#39; &#60;br&#62;&#60;br&#62;example at &#60;a href=&#34;http://www.dzone.com&#34;&#62;www.dzone.com&#60;/a&#62; and just try to scroll down on the page. pretty neat!</description>
		<content:encoded><![CDATA[<p>How about a demo about &#39;load on scroll&#39; or &#39;pageless scrolling&#39; &lt;br&gt;&lt;br&gt;example at &lt;a href=&quot;http://www.dzone.com&quot;&gt;www.dzone.com&lt;/a&gt; and just try to scroll down on the page. pretty neat!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ariel Flesler</title>
		<link>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-67</link>
		<dc:creator>Ariel Flesler</dc:creator>
		<pubDate>Fri, 07 Dec 2007 12:48:47 +0000</pubDate>
		<guid>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-67</guid>
		<description>Oops.. I mean '.' + klass. Not '#' + klass.</description>
		<content:encoded><![CDATA[<p>Oops.. I mean &#8216;.&#8217; + klass. Not &#8216;#&#8217; + klass.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ariel Flesler</title>
		<link>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-1511</link>
		<dc:creator>Ariel Flesler</dc:creator>
		<pubDate>Fri, 07 Dec 2007 12:48:47 +0000</pubDate>
		<guid>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-1511</guid>
		<description>Oops.. I mean &#39;.&#39; + klass. Not &#39;#&#39; + klass.</description>
		<content:encoded><![CDATA[<p>Oops.. I mean &#39;.&#39; + klass. Not &#39;#&#39; + klass.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ariel Flesler</title>
		<link>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-66</link>
		<dc:creator>Ariel Flesler</dc:creator>
		<pubDate>Fri, 07 Dec 2007 12:47:52 +0000</pubDate>
		<guid>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-66</guid>
		<description>@dave
  If you use hasClass, you must remove the dot leading the className. As for speed.. that is odd, because if you take a look at hasClass:

hasClass: function(expr) {
	return this.is("." + expr);
},

It's doing, internally, the same as I did. I don't think it can be really faster. hasClass is useful when you have the className in a variable, so it saves you the  '#' + klass .</description>
		<content:encoded><![CDATA[<p>@dave<br />
  If you use hasClass, you must remove the dot leading the className. As for speed.. that is odd, because if you take a look at hasClass:</p>
<p>hasClass: function(expr) {<br />
	return this.is(&#8221;.&#8221; + expr);<br />
},</p>
<p>It&#8217;s doing, internally, the same as I did. I don&#8217;t think it can be really faster. hasClass is useful when you have the className in a variable, so it saves you the  &#8216;#&#8217; + klass .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ariel Flesler</title>
		<link>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-1510</link>
		<dc:creator>Ariel Flesler</dc:creator>
		<pubDate>Fri, 07 Dec 2007 12:47:52 +0000</pubDate>
		<guid>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-1510</guid>
		<description>@dave&#60;br&#62;  If you use hasClass, you must remove the dot leading the className. As for speed.. that is odd, because if you take a look at hasClass:&#60;br&#62;&#60;br&#62;hasClass: function(expr) {&#60;br&#62;	return this.is(&#34;.&#34; + expr);&#60;br&#62;},&#60;br&#62;&#60;br&#62;It&#39;s doing, internally, the same as I did. I don&#39;t think it can be really faster. hasClass is useful when you have the className in a variable, so it saves you the  &#39;#&#39; + klass .</description>
		<content:encoded><![CDATA[<p>@dave&lt;br&gt;  If you use hasClass, you must remove the dot leading the className. As for speed.. that is odd, because if you take a look at hasClass:&lt;br&gt;&lt;br&gt;hasClass: function(expr) {&lt;br&gt;	return this.is(&quot;.&quot; + expr);&lt;br&gt;},&lt;br&gt;&lt;br&gt;It&#39;s doing, internally, the same as I did. I don&#39;t think it can be really faster. hasClass is useful when you have the className in a variable, so it saves you the  &#39;#&#39; + klass .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henrik</title>
		<link>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-61</link>
		<dc:creator>Henrik</dc:creator>
		<pubDate>Fri, 07 Dec 2007 07:19:23 +0000</pubDate>
		<guid>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-61</guid>
		<description>Thanks Dave!

Rich: I will link to that whole project when it is finished. In the meantime what we do here is simply making the main browser window scroll to make the element clicked centered vertically. The purpose is to enhance the usability of the interface.</description>
		<content:encoded><![CDATA[<p>Thanks Dave!</p>
<p>Rich: I will link to that whole project when it is finished. In the meantime what we do here is simply making the main browser window scroll to make the element clicked centered vertically. The purpose is to enhance the usability of the interface.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henrik</title>
		<link>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-1114</link>
		<dc:creator>Henrik</dc:creator>
		<pubDate>Fri, 07 Dec 2007 07:19:23 +0000</pubDate>
		<guid>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-1114</guid>
		<description>Thanks Dave!&lt;br&gt;&lt;br&gt;Rich: I will link to that whole project when it is finished. In the meantime what we do here is simply making the main browser window scroll to make the element clicked centered vertically. The purpose is to enhance the usability of the interface.</description>
		<content:encoded><![CDATA[<p>Thanks Dave!</p>
<p>Rich: I will link to that whole project when it is finished. In the meantime what we do here is simply making the main browser window scroll to make the element clicked centered vertically. The purpose is to enhance the usability of the interface.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich</title>
		<link>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-59</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Thu, 06 Dec 2007 20:47:09 +0000</pubDate>
		<guid>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-59</guid>
		<description>Can you post a demo of effect you are doing? 

Thanks,
Rich</description>
		<content:encoded><![CDATA[<p>Can you post a demo of effect you are doing? </p>
<p>Thanks,<br />
Rich</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich</title>
		<link>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-1113</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Thu, 06 Dec 2007 20:47:09 +0000</pubDate>
		<guid>http://www.prodevtips.com/2007/12/05/jquery-making-scrolling-and-toggling-simple/#comment-1113</guid>
		<description>Can you post a demo of effect you are doing? &lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Rich</description>
		<content:encoded><![CDATA[<p>Can you post a demo of effect you are doing? </p>
<p>Thanks,<br />Rich</p>
]]></content:encoded>
	</item>
</channel>
</rss>
