<?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: 16 Jquery Slideshow Applications You CANNOT Miss &#8211; Updated!</title> <atom:link href="http://bradblogging.com/jquery/9-jquery-slideshow-applications-you-cannot-miss/feed/" rel="self" type="application/rss+xml" /><link>http://bradblogging.com/jquery/9-jquery-slideshow-applications-you-cannot-miss/</link> <description>Just another WordPress weblog</description> <lastBuildDate>Mon, 15 Mar 2010 16:15:15 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>By: Brad Ney</title><link>http://bradblogging.com/jquery/9-jquery-slideshow-applications-you-cannot-miss/comment-page-1/#comment-31084</link> <dc:creator>Brad Ney</dc:creator> <pubDate>Tue, 09 Mar 2010 20:54:38 +0000</pubDate> <guid
isPermaLink="false">http://bradblogging.com/?p=477#comment-31084</guid> <description>Thanks for the link!Will be sure to check it out. :D</description> <content:encoded><![CDATA[<p>Thanks for the link!</p><p>Will be sure to check it out. <img
src='http://bradblogging.lfw.netdna-cdn.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>By: LittleWebThings</title><link>http://bradblogging.com/jquery/9-jquery-slideshow-applications-you-cannot-miss/comment-page-1/#comment-31083</link> <dc:creator>LittleWebThings</dc:creator> <pubDate>Tue, 09 Mar 2010 20:45:57 +0000</pubDate> <guid
isPermaLink="false">http://bradblogging.com/?p=477#comment-31083</guid> <description>Many of these entries have been useful to me over the years!
Thanks for creating this list.If you&#039;d like something different you can try my plugin:&lt;a href=&quot;http://www.littlewebthings.com/projects/blinds/&quot; rel=&quot;nofollow&quot;&gt;jQuery Blinds Slideshow&lt;/a&gt;</description> <content:encoded><![CDATA[<p>Many of these entries have been useful to me over the years!<br
/> Thanks for creating this list.</p><p>If you&#8217;d like something different you can try my plugin:</p><p><a
href="http://www.littlewebthings.com/projects/blinds/" rel="nofollow">jQuery Blinds Slideshow</a></p> ]]></content:encoded> </item> <item><title>By: Brad Ney</title><link>http://bradblogging.com/jquery/9-jquery-slideshow-applications-you-cannot-miss/comment-page-1/#comment-30927</link> <dc:creator>Brad Ney</dc:creator> <pubDate>Sat, 27 Feb 2010 21:30:38 +0000</pubDate> <guid
isPermaLink="false">http://bradblogging.com/?p=477#comment-30927</guid> <description>I don&#039;t code in Jquery, but it looks like your pictures URL are pointing to a folder rather than an actual picture. Perhaps that could be the problem?</description> <content:encoded><![CDATA[<p>I don&#8217;t code in Jquery, but it looks like your pictures URL are pointing to a folder rather than an actual picture. Perhaps that could be the problem?</p> ]]></content:encoded> </item> <item><title>By: reinhard</title><link>http://bradblogging.com/jquery/9-jquery-slideshow-applications-you-cannot-miss/comment-page-1/#comment-30889</link> <dc:creator>reinhard</dc:creator> <pubDate>Tue, 16 Feb 2010 10:35:41 +0000</pubDate> <guid
isPermaLink="false">http://bradblogging.com/?p=477#comment-30889</guid> <description>Hi Brad. Very Nice. I also tried to handle jQuery in our Sharepoint but make something wrong :( I try to make an slideshow in the header of our Sharepoint 2007.
Maybe you see what wrong on my script:
var Imtech = {} &#124;&#124; Imtech;
Imtech.Slideshow = function() {
this.images = null;
this.current = -1;
this.wrapper = null;
this.duration = 6000;
this.delay = 3000;
this.init = function() {
this.images = &quot;\\server01\C$\PictureStore&quot;;
this.wrapper.css(&quot;display&quot;, &quot;none&quot;);
this.wrapper = $(&quot;div.slideshow&quot;, this.wrapper.parent(&quot;:first&quot;).append(&#039;&#039;));
this.wrapper.html(&#039;&#039;);
this.intervalObj = window.setInterval(this.showImage, this.duration + this.delay);
}this.showImage = function() {
if (++slideshow.current &gt;= slideshow.images.length) {
slideshow.current = 0;
}slideshow.wrapper.fadeOut(slideshow.delay, function() {
slideshow.wrapper.html(&#039;&#039;);
slideshow.wrapper.fadeIn(slideshow.delay);
});
}var loadImages = function() {
var images = $(&quot;table.ms-summarystandardbody td.ms-vb2 a[onfocus]&quot;);
var imagesList = new Array(images.length);
var i = -1;
images.each(function() {
imagesList[++i] = this.href.replace(&#039;about:&#039;, &#039;&#039;);
});
return imagesList;
}
};var slideshow;$().ready(function() {
slideshow = new Imtech.Slideshow();
slideshow.wrapper = $(&quot;table.ms-summarystandardbody td.ms-vb2 a&quot;).parents(&quot;div[id^=WebPart]&quot;);
slideshow.init();
});THX.Regards</description> <content:encoded><![CDATA[<p>Hi Brad. Very Nice. I also tried to handle jQuery in our Sharepoint but make something wrong <img
src='http://bradblogging.lfw.netdna-cdn.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> I try to make an slideshow in the header of our Sharepoint 2007.<br
/> Maybe you see what wrong on my script:</p><p> var Imtech = {} || Imtech;<br
/> Imtech.Slideshow = function() {<br
/> this.images = null;<br
/> this.current = -1;<br
/> this.wrapper = null;<br
/> this.duration = 6000;<br
/> this.delay = 3000;<br
/> this.init = function() {<br
/> this.images = &#8220;\\server01\C$\PictureStore&#8221;;<br
/> this.wrapper.css(&#8220;display&#8221;, &#8220;none&#8221;);<br
/> this.wrapper = $(&#8220;div.slideshow&#8221;, this.wrapper.parent(&#8220;:first&#8221;).append(&#8221;));<br
/> this.wrapper.html(&#8221;);<br
/> this.intervalObj = window.setInterval(this.showImage, this.duration + this.delay);<br
/> }</p><p> this.showImage = function() {<br
/> if (++slideshow.current &gt;= slideshow.images.length) {<br
/> slideshow.current = 0;<br
/> }</p><p> slideshow.wrapper.fadeOut(slideshow.delay, function() {<br
/> slideshow.wrapper.html(&#8221;);<br
/> slideshow.wrapper.fadeIn(slideshow.delay);<br
/> });<br
/> }</p><p> var loadImages = function() {<br
/> var images = $(&#8220;table.ms-summarystandardbody td.ms-vb2 a[onfocus]&#8220;);<br
/> var imagesList = new Array(images.length);<br
/> var i = -1;<br
/> images.each(function() {<br
/> imagesList[++i] = this.href.replace(&#8216;about:&#8217;, &#8221;);<br
/> });<br
/> return imagesList;<br
/> }<br
/> };</p><p> var slideshow;</p><p> $().ready(function() {<br
/> slideshow = new Imtech.Slideshow();<br
/> slideshow.wrapper = $(&#8220;table.ms-summarystandardbody td.ms-vb2 a&#8221;).parents(&#8220;div[id^=WebPart]&#8220;);<br
/> slideshow.init();<br
/> });</p><p>THX.</p><p>Regards</p> ]]></content:encoded> </item> <item><title>By: Partnervermittlung</title><link>http://bradblogging.com/jquery/9-jquery-slideshow-applications-you-cannot-miss/comment-page-1/#comment-30829</link> <dc:creator>Partnervermittlung</dc:creator> <pubDate>Mon, 25 Jan 2010 13:51:51 +0000</pubDate> <guid
isPermaLink="false">http://bradblogging.com/?p=477#comment-30829</guid> <description>very good list! thx</description> <content:encoded><![CDATA[<p>very good list! thx</p> ]]></content:encoded> </item> <item><title>By: Sereyboth</title><link>http://bradblogging.com/jquery/9-jquery-slideshow-applications-you-cannot-miss/comment-page-1/#comment-30828</link> <dc:creator>Sereyboth</dc:creator> <pubDate>Mon, 25 Jan 2010 11:58:40 +0000</pubDate> <guid
isPermaLink="false">http://bradblogging.com/?p=477#comment-30828</guid> <description>Great! List! I just began !
.-= Sereyboth&#180;s last blog ..&lt;a href=&quot;http://ysereyboth.blogspot.com/2010/01/banned-from-adsense-my-friends-story.html&quot;&gt;Banned From Adsense!! My Friend`s Story!&lt;/a&gt; =-.</description> <content:encoded><![CDATA[<p>Great! List! I just began !<br
/> <span
class="cluv"> Sereyboth&#180;s last blog ..<a
href="http://ysereyboth.blogspot.com/2010/01/banned-from-adsense-my-friends-story.html">Banned From Adsense!! My Friend`s Story!</a> <span
class="heart_tip_box"><img
class="heart_tip" alt="My ComLuv Profile" border="0" width="16" height="14" src="http://bradblogging.com/wp-content/plugins/commentluv/images/littleheart.gif"/></span></span></p> ]]></content:encoded> </item> <item><title>By: Anonymous</title><link>http://bradblogging.com/jquery/9-jquery-slideshow-applications-you-cannot-miss/comment-page-1/#comment-30772</link> <dc:creator>Anonymous</dc:creator> <pubDate>Sat, 09 Jan 2010 10:06:29 +0000</pubDate> <guid
isPermaLink="false">http://bradblogging.com/?p=477#comment-30772</guid> <description>[...]  [...]</description> <content:encoded><![CDATA[<p>[...]  [...]</p> ]]></content:encoded> </item> <item><title>By: web design dubai</title><link>http://bradblogging.com/jquery/9-jquery-slideshow-applications-you-cannot-miss/comment-page-1/#comment-30534</link> <dc:creator>web design dubai</dc:creator> <pubDate>Sun, 20 Dec 2009 11:35:40 +0000</pubDate> <guid
isPermaLink="false">http://bradblogging.com/?p=477#comment-30534</guid> <description>nice list of jqueryi like it.</description> <content:encoded><![CDATA[<p>nice list of jquery</p><p>i like it.</p> ]]></content:encoded> </item> <item><title>By: Online Industry</title><link>http://bradblogging.com/jquery/9-jquery-slideshow-applications-you-cannot-miss/comment-page-1/#comment-30368</link> <dc:creator>Online Industry</dc:creator> <pubDate>Thu, 17 Dec 2009 15:01:23 +0000</pubDate> <guid
isPermaLink="false">http://bradblogging.com/?p=477#comment-30368</guid> <description>Hey, great list! Thank you.</description> <content:encoded><![CDATA[<p>Hey, great list! Thank you.</p> ]]></content:encoded> </item> <item><title>By: indialike</title><link>http://bradblogging.com/jquery/9-jquery-slideshow-applications-you-cannot-miss/comment-page-1/#comment-30306</link> <dc:creator>indialike</dc:creator> <pubDate>Wed, 16 Dec 2009 08:00:06 +0000</pubDate> <guid
isPermaLink="false">http://bradblogging.com/?p=477#comment-30306</guid> <description>Very nice and useful tutorials to web designers,
Thanks for posting.</description> <content:encoded><![CDATA[<p>Very nice and useful tutorials to web designers,<br
/> Thanks for posting.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- This site's performance optimized by W3 Total Cache. Dramatically improve the speed and reliability of your blog!

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc (user agent is rejected)
Database Caching 2/25 queries in 0.042 seconds using apc
Content Delivery Network via bradblogging.lfw.netdna-cdn.com

Served from: 216.187.86.162 @ 2010-03-16 19:41:00 -->