<?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 Carousel component in jQuery</title>
	<atom:link href="http://blog.pixelingene.com/?feed=rss2&#038;p=298" rel="self" type="application/rss+xml" />
	<link>http://blog.pixelingene.com/?p=298&amp;utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=a-carousel-component-in-jquery</link>
	<description>Exploring creativity with Design / Graphics / Technology</description>
	<lastBuildDate>Mon, 06 Sep 2010 08:10:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Magic</title>
		<link>http://blog.pixelingene.com/?p=298&#038;cpage=1#comment-694</link>
		<dc:creator>Magic</dc:creator>
		<pubDate>Fri, 04 Jun 2010 19:07:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pixelingene.com/?p=298#comment-694</guid>
		<description>Awesome!!! That&#039;s something I&#039;ve been looking for</description>
		<content:encoded><![CDATA[<p>Awesome!!! That&#8217;s something I&#8217;ve been looking for</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vinicius</title>
		<link>http://blog.pixelingene.com/?p=298&#038;cpage=1#comment-637</link>
		<dc:creator>Vinicius</dc:creator>
		<pubDate>Sat, 28 Nov 2009 11:25:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pixelingene.com/?p=298#comment-637</guid>
		<description>Can this plugin rotate images like this 

http://www.andrewsellick.com/examples/3d-carousel/  ?

thanks</description>
		<content:encoded><![CDATA[<p>Can this plugin rotate images like this </p>
<p><a href="http://www.andrewsellick.com/examples/3d-carousel/" rel="nofollow">http://www.andrewsellick.com/examples/3d-carousel/</a>  ?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kyle</title>
		<link>http://blog.pixelingene.com/?p=298&#038;cpage=1#comment-575</link>
		<dc:creator>Kyle</dc:creator>
		<pubDate>Fri, 29 May 2009 19:06:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pixelingene.com/?p=298#comment-575</guid>
		<description>I am looking to add a next/previous button to this so you can browse it in order. I can&#039;t seem to get it working. I am new to jquery and the ui, can you help?</description>
		<content:encoded><![CDATA[<p>I am looking to add a next/previous button to this so you can browse it in order. I can&#8217;t seem to get it working. I am new to jquery and the ui, can you help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shelly Pace</title>
		<link>http://blog.pixelingene.com/?p=298&#038;cpage=1#comment-561</link>
		<dc:creator>Shelly Pace</dc:creator>
		<pubDate>Fri, 01 May 2009 21:21:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pixelingene.com/?p=298#comment-561</guid>
		<description>Thanks Pavan.  Unfortunately, I&#039;m not too versed in javascript and have tried a couple of things to no avail.  When I duplicate the code below:

$(document).ready(function()
{
	var items = new Array();
	for (var i = 1; i &lt;= 12; i++)
	{
		var item = new Object();
		item.title = &quot;Project - &quot; + i;
		item.description = &quot;This will some long winding description for the project: Project &quot; + i + &quot;, mostly some marketing stuff&quot;;
		item.url = &quot;http://blog.pixelingene.com&quot;;
		item.image = &quot;items/&quot; + ((i &lt; 10) ? &quot;0&quot; : &quot;&quot;) + i + &quot;.png&quot;;

		items.push(item);
	}

	var ref = $(&quot;#carousel&quot;).carousel({items:items, itemSize: 128});
});


it just makes the change to all of them.  Is there any way you could give me some sample code for each item to be different text...i.e. &quot;1985&quot; as the title of the first one with the description being &quot;this is what the company was doing in 1985&quot; and &quot;1992&quot; with &quot;this is what the company was doing in 1992&quot; for the second one, etc.

http://www.coolchickdesigns.com/shiner/NEW/history.html

Thanks in advance!
Shelly</description>
		<content:encoded><![CDATA[<p>Thanks Pavan.  Unfortunately, I&#8217;m not too versed in javascript and have tried a couple of things to no avail.  When I duplicate the code below:</p>
<p>$(document).ready(function()<br />
{<br />
	var items = new Array();<br />
	for (var i = 1; i &lt;= 12; i++)<br />
	{<br />
		var item = new Object();<br />
		item.title = &#8220;Project &#8211; &#8221; + i;<br />
		item.description = &#8220;This will some long winding description for the project: Project &#8221; + i + &#8220;, mostly some marketing stuff&#8221;;<br />
		item.url = &#8220;http://blog.pixelingene.com&#8221;;<br />
		item.image = &#8220;items/&#8221; + ((i &lt; 10) ? &#8220;0&#8243; : &#8220;&#8221;) + i + &#8220;.png&#8221;;</p>
<p>		items.push(item);<br />
	}</p>
<p>	var ref = $(&#8220;#carousel&#8221;).carousel({items:items, itemSize: 128});<br />
});</p>
<p>it just makes the change to all of them.  Is there any way you could give me some sample code for each item to be different text&#8230;i.e. &#8220;1985&#8243; as the title of the first one with the description being &#8220;this is what the company was doing in 1985&#8243; and &#8220;1992&#8243; with &#8220;this is what the company was doing in 1992&#8243; for the second one, etc.</p>
<p><a href="http://www.coolchickdesigns.com/shiner/NEW/history.html" rel="nofollow">http://www.coolchickdesigns.com/shiner/NEW/history.html</a></p>
<p>Thanks in advance!<br />
Shelly</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pavan Podila</title>
		<link>http://blog.pixelingene.com/?p=298&#038;cpage=1#comment-554</link>
		<dc:creator>Pavan Podila</dc:creator>
		<pubDate>Sun, 26 Apr 2009 20:49:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pixelingene.com/?p=298#comment-554</guid>
		<description>Shelly,
       If you open up the index.html file inside the ZIP, you will find the code to create the items. I use a for-loop to generate the items for the example.</description>
		<content:encoded><![CDATA[<p>Shelly,<br />
       If you open up the index.html file inside the ZIP, you will find the code to create the items. I use a for-loop to generate the items for the example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shelly Pace</title>
		<link>http://blog.pixelingene.com/?p=298&#038;cpage=1#comment-553</link>
		<dc:creator>Shelly Pace</dc:creator>
		<pubDate>Sun, 26 Apr 2009 20:19:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pixelingene.com/?p=298#comment-553</guid>
		<description>Forgot to list the site. :)

http://www.coolchickdesigns.com/shiner/history.html</description>
		<content:encoded><![CDATA[<p>Forgot to list the site. <img src='http://blog.pixelingene.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.coolchickdesigns.com/shiner/history.html" rel="nofollow">http://www.coolchickdesigns.com/shiner/history.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shelly Pace</title>
		<link>http://blog.pixelingene.com/?p=298&#038;cpage=1#comment-552</link>
		<dc:creator>Shelly Pace</dc:creator>
		<pubDate>Sun, 26 Apr 2009 20:19:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pixelingene.com/?p=298#comment-552</guid>
		<description>I&#039;m trying to figure out how to change the items and descriptions.  This the page I have it at, and I want to have each image be a different year on the history of the company...i,e. in 1985 &quot;this happened&quot; and in 1987 &quot;this happened&quot;.  Any help would be great!</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to figure out how to change the items and descriptions.  This the page I have it at, and I want to have each image be a different year on the history of the company&#8230;i,e. in 1985 &#8220;this happened&#8221; and in 1987 &#8220;this happened&#8221;.  Any help would be great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stefan</title>
		<link>http://blog.pixelingene.com/?p=298&#038;cpage=1#comment-532</link>
		<dc:creator>stefan</dc:creator>
		<pubDate>Mon, 09 Mar 2009 08:44:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pixelingene.com/?p=298#comment-532</guid>
		<description>How can i get the link (item.url) opened in a new window?</description>
		<content:encoded><![CDATA[<p>How can i get the link (item.url) opened in a new window?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phillc</title>
		<link>http://blog.pixelingene.com/?p=298&#038;cpage=1#comment-481</link>
		<dc:creator>phillc</dc:creator>
		<pubDate>Wed, 29 Oct 2008 14:42:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pixelingene.com/?p=298#comment-481</guid>
		<description>wholly crap awesome!!!</description>
		<content:encoded><![CDATA[<p>wholly crap awesome!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pavan Podila</title>
		<link>http://blog.pixelingene.com/?p=298&#038;cpage=1#comment-456</link>
		<dc:creator>Pavan Podila</dc:creator>
		<pubDate>Fri, 03 Oct 2008 23:21:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pixelingene.com/?p=298#comment-456</guid>
		<description>Now you have it .... :)</description>
		<content:encoded><![CDATA[<p>Now you have it &#8230;. <img src='http://blog.pixelingene.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
