
<?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: Tutorial to build a simple Content Slider using jQuery</title>
	<atom:link href="http://rohitsengar.cueblocks.net/tutorial-to-build-content-slider/feed/" rel="self" type="application/rss+xml" />
	<link>http://rohitsengar.cueblocks.net/tutorial-to-build-content-slider/</link>
	<description>Passionate for Programming</description>
	<lastBuildDate>Tue, 20 Dec 2011 15:40:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
	<item>
		<title>By: dojo</title>
		<link>http://rohitsengar.cueblocks.net/tutorial-to-build-content-slider/comment-page-1/#comment-18421</link>
		<dc:creator>dojo</dc:creator>
		<pubDate>Sat, 17 Dec 2011 20:02:31 +0000</pubDate>
		<guid isPermaLink="false">http://rohitsengar.cueblocks.net/?p=110#comment-18421</guid>
		<description>You have NO idea how much I&#039;ve looked for a SIMPLE slider, with no whistles, but that would work. Thank you for taking the time to write this amazing tutorial. Simple and effective :)</description>
		<content:encoded><![CDATA[<p>You have NO idea how much I&#8217;ve looked for a SIMPLE slider, with no whistles, but that would work. Thank you for taking the time to write this amazing tutorial. Simple and effective <img src='http://rohitsengar.cueblocks.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zero cost commissions</title>
		<link>http://rohitsengar.cueblocks.net/tutorial-to-build-content-slider/comment-page-1/#comment-626</link>
		<dc:creator>zero cost commissions</dc:creator>
		<pubDate>Wed, 01 Sep 2010 12:38:50 +0000</pubDate>
		<guid isPermaLink="false">http://rohitsengar.cueblocks.net/?p=110#comment-626</guid>
		<description>This specific is 1 of the most beneficial blog post which I have look at till date on this kind of area. Certainly extensive yet still to the point without any filler.</description>
		<content:encoded><![CDATA[<p>This specific is 1 of the most beneficial blog post which I have look at till date on this kind of area. Certainly extensive yet still to the point without any filler.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://rohitsengar.cueblocks.net/tutorial-to-build-content-slider/comment-page-1/#comment-372</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 14 May 2010 07:31:47 +0000</pubDate>
		<guid isPermaLink="false">http://rohitsengar.cueblocks.net/?p=110#comment-372</guid>
		<description>Hey Narmosix,

English is not an issue for developers :) I understood what you want. You just need to modify the functions slidePrev() &amp; slideNext() to add else condition, like below. Hope it will help.

function slidePrev(){
	if(parseInt($(&quot;#content ul&quot;).css(&quot;left&quot;))  -3000)
	{
		$(&quot;#content ul&quot;).animate({
			left: parseInt($(&quot;#content ul&quot;).css(&quot;left&quot;))-500+&quot;px&quot;
		},1000);
	}
	else{
		$(&quot;#content ul&quot;).animate({ left: &quot;0px&quot; },1000);
	}
}

function slideNext(){
	if(parseInt($(&quot;#content ul&quot;).css(&quot;left&quot;)) &gt; -3000)
	{
		$(&quot;#content ul&quot;).animate({
			left: parseInt($(&quot;#content ul&quot;).css(&quot;left&quot;))-500+&quot;px&quot;
		},1000);
	}
	else{
		$(&quot;#content ul&quot;).animate({ left: &quot;0px&quot; },1000);
	}
}
</description>
		<content:encoded><![CDATA[<p>Hey Narmosix,</p>
<p>English is not an issue for developers <img src='http://rohitsengar.cueblocks.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I understood what you want. You just need to modify the functions slidePrev() &amp; slideNext() to add else condition, like below. Hope it will help.</p>
<p>function slidePrev(){<br />
	if(parseInt($(&#8220;#content ul&#8221;).css(&#8220;left&#8221;))  -3000)<br />
	{<br />
		$(&#8220;#content ul&#8221;).animate({<br />
			left: parseInt($(&#8220;#content ul&#8221;).css(&#8220;left&#8221;))-500+&#8221;px&#8221;<br />
		},1000);<br />
	}<br />
	else{<br />
		$(&#8220;#content ul&#8221;).animate({ left: &#8220;0px&#8221; },1000);<br />
	}<br />
}</p>
<p>function slideNext(){<br />
	if(parseInt($(&#8220;#content ul&#8221;).css(&#8220;left&#8221;)) > -3000)<br />
	{<br />
		$(&#8220;#content ul&#8221;).animate({<br />
			left: parseInt($(&#8220;#content ul&#8221;).css(&#8220;left&#8221;))-500+&#8221;px&#8221;<br />
		},1000);<br />
	}<br />
	else{<br />
		$(&#8220;#content ul&#8221;).animate({ left: &#8220;0px&#8221; },1000);<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: narmosix</title>
		<link>http://rohitsengar.cueblocks.net/tutorial-to-build-content-slider/comment-page-1/#comment-367</link>
		<dc:creator>narmosix</dc:creator>
		<pubDate>Thu, 13 May 2010 16:10:30 +0000</pubDate>
		<guid isPermaLink="false">http://rohitsengar.cueblocks.net/?p=110#comment-367</guid>
		<description>Hello! I like your script,  but I have one question.   After the last li element, if you press next, slider will show blank element. Is there a way to automatically rollback to the first element, without using extra button, I mean just pressing &quot;next&quot; after the last element.

I hope you&#039;ll understand what I want to ask, my english is not very well. :)</description>
		<content:encoded><![CDATA[<p>Hello! I like your script,  but I have one question.   After the last li element, if you press next, slider will show blank element. Is there a way to automatically rollback to the first element, without using extra button, I mean just pressing &#8220;next&#8221; after the last element.</p>
<p>I hope you&#8217;ll understand what I want to ask, my english is not very well. <img src='http://rohitsengar.cueblocks.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ptamaro</title>
		<link>http://rohitsengar.cueblocks.net/tutorial-to-build-content-slider/comment-page-1/#comment-318</link>
		<dc:creator>ptamaro</dc:creator>
		<pubDate>Tue, 04 May 2010 19:33:53 +0000</pubDate>
		<guid isPermaLink="false">http://rohitsengar.cueblocks.net/?p=110#comment-318</guid>
		<description>Rohit, great job with this really nice and simple carousel — it&#039;s so simple! The best part is that it&#039;s easy to use, AND it works with other jQuery plugins which doesn&#039;t seem to be the case with lots of other plugin scripts. Also, it can easily be customized with CSS, and works well in every browser. 

Great tutorial, and thanks for sharing :-)</description>
		<content:encoded><![CDATA[<p>Rohit, great job with this really nice and simple carousel — it&#8217;s so simple! The best part is that it&#8217;s easy to use, AND it works with other jQuery plugins which doesn&#8217;t seem to be the case with lots of other plugin scripts. Also, it can easily be customized with CSS, and works well in every browser. </p>
<p>Great tutorial, and thanks for sharing <img src='http://rohitsengar.cueblocks.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Costruire uno slider di contenuti con jQuery &#8212; Studio404 Web Agency</title>
		<link>http://rohitsengar.cueblocks.net/tutorial-to-build-content-slider/comment-page-1/#comment-282</link>
		<dc:creator>Costruire uno slider di contenuti con jQuery &#8212; Studio404 Web Agency</dc:creator>
		<pubDate>Sat, 24 Apr 2010 09:12:41 +0000</pubDate>
		<guid isPermaLink="false">http://rohitsengar.cueblocks.net/?p=110#comment-282</guid>
		<description>[...] http://rohitsengar.cueblocks.net/tutorial-to-build-content-slider/ Salva / Condividi  var a2a_config = a2a_config &#124;&#124; {}; a2a_localize = { Share: &quot;Condividi&quot;, Save: &quot;Salva&quot;, Subscribe: &quot;Abbonati&quot;, Email: &quot;E-mail&quot;, Bookmark: &quot;Segnalibro&quot;, ShowAll: &quot;espandi&quot;, ShowLess: &quot;comprimi&quot;, FindServices: &quot;Trova servizi&quot;, FindAnyServiceToAddTo: &quot;Trova subito un servizio da aggiungere&quot;, PoweredBy: &quot;Fornito da&quot;, ShareViaEmail: &quot;Condividi via email&quot;, SubscribeViaEmail: &quot;Abbonati via email&quot;, BookmarkInYourBrowser: &quot;Aggiungi ai segnalibri&quot;, BookmarkInstructions: &quot;Premi Ctrl+D o Cmd+D per aggiungere questa pagina alla lista dei segnalibri&quot;, AddToYourFavorites: &quot;Aggiungi ai favoriti&quot;, SendFromWebOrProgram: &quot;Invia da un indirizzo email o client di posta elettronica&quot;, EmailProgram: &quot;Client di posta elettronica&quot; }; a2a_config.linkname=&quot;Costruire uno slider di contenuti con jQuery&quot;; a2a_config.linkurl=&quot;http://www.studio404.it/2010/costruire-uno-slider-di-contenuti-con-jquery.html&quot;; a2a_config.hide_embeds=0; a2a_color_main=&quot;DDE6AB&quot;;a2a_color_border=&quot;ECECEC&quot;;a2a_color_link_text=&quot;333333&quot;;a2a_color_link_text_hover=&quot;333333&quot;; [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://rohitsengar.cueblocks.net/tutorial-to-build-content-slider/" rel="nofollow">http://rohitsengar.cueblocks.net/tutorial-to-build-content-slider/</a> Salva / Condividi  var a2a_config = a2a_config || {}; a2a_localize = { Share: &quot;Condividi&quot;, Save: &quot;Salva&quot;, Subscribe: &quot;Abbonati&quot;, Email: &quot;E-mail&quot;, Bookmark: &quot;Segnalibro&quot;, ShowAll: &quot;espandi&quot;, ShowLess: &quot;comprimi&quot;, FindServices: &quot;Trova servizi&quot;, FindAnyServiceToAddTo: &quot;Trova subito un servizio da aggiungere&quot;, PoweredBy: &quot;Fornito da&quot;, ShareViaEmail: &quot;Condividi via email&quot;, SubscribeViaEmail: &quot;Abbonati via email&quot;, BookmarkInYourBrowser: &quot;Aggiungi ai segnalibri&quot;, BookmarkInstructions: &quot;Premi Ctrl+D o Cmd+D per aggiungere questa pagina alla lista dei segnalibri&quot;, AddToYourFavorites: &quot;Aggiungi ai favoriti&quot;, SendFromWebOrProgram: &quot;Invia da un indirizzo email o client di posta elettronica&quot;, EmailProgram: &quot;Client di posta elettronica&quot; }; a2a_config.linkname=&quot;Costruire uno slider di contenuti con jQuery&quot;; a2a_config.linkurl=&quot;http://www.studio404.it/2010/costruire-uno-slider-di-contenuti-con-jquery.html&quot;; a2a_config.hide_embeds=0; a2a_color_main=&quot;DDE6AB&quot;;a2a_color_border=&quot;ECECEC&quot;;a2a_color_link_text=&quot;333333&quot;;a2a_color_link_text_hover=&quot;333333&quot;; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tutorial on how to build a simple Content Slider using jQuery &#171; RMDsite &#124; Rich Media and Development Site Links and Resources</title>
		<link>http://rohitsengar.cueblocks.net/tutorial-to-build-content-slider/comment-page-1/#comment-279</link>
		<dc:creator>Tutorial on how to build a simple Content Slider using jQuery &#171; RMDsite &#124; Rich Media and Development Site Links and Resources</dc:creator>
		<pubDate>Wed, 21 Apr 2010 08:12:17 +0000</pubDate>
		<guid isPermaLink="false">http://rohitsengar.cueblocks.net/?p=110#comment-279</guid>
		<description>[...] Direct Link  &#160; [...]</description>
		<content:encoded><![CDATA[<p>[...] Direct Link  &nbsp; [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

