<?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 Solution of jQuery Animation Queue Buildup</title> <atom:link href="http://www.webappers.com/2009/12/18/a-solution-of-jquery-animation-queue-buildup/feed/" rel="self" type="application/rss+xml" /><link>http://www.webappers.com/2009/12/18/a-solution-of-jquery-animation-queue-buildup/</link> <description>- Hunting the Best Open Source Resources for Web Developers</description> <lastBuildDate>Mon, 06 Feb 2012 13:53:05 -0800</lastBuildDate> <generator>http://wordpress.org/?v=2.8.6</generator> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>By: builder</title><link>http://www.webappers.com/2009/12/18/a-solution-of-jquery-animation-queue-buildup/comment-page-1/#comment-34189</link> <dc:creator>builder</dc:creator> <pubDate>Sun, 25 Apr 2010 17:13:33 +0000</pubDate> <guid
isPermaLink="false">http://www.webappers.com/?p=2148#comment-34189</guid> <description>Great tutorial. Thanks!</description> <content:encoded><![CDATA[<p>Great tutorial. Thanks!</p> ]]></content:encoded> </item> <item><title>By: pixelmaven</title><link>http://www.webappers.com/2009/12/18/a-solution-of-jquery-animation-queue-buildup/comment-page-1/#comment-31966</link> <dc:creator>pixelmaven</dc:creator> <pubDate>Mon, 11 Jan 2010 21:17:38 +0000</pubDate> <guid
isPermaLink="false">http://www.webappers.com/?p=2148#comment-31966</guid> <description>What happened to animate({***}, {queue:false}); ?thats a much simpler solution!</description> <content:encoded><![CDATA[<p>What happened to animate({***}, {queue:false}); ?</p><p>thats a much simpler solution!</p> ]]></content:encoded> </item> <item><title>By: criography</title><link>http://www.webappers.com/2009/12/18/a-solution-of-jquery-animation-queue-buildup/comment-page-1/#comment-31477</link> <dc:creator>criography</dc:creator> <pubDate>Mon, 21 Dec 2009 10:48:58 +0000</pubDate> <guid
isPermaLink="false">http://www.webappers.com/?p=2148#comment-31477</guid> <description>I&#039;m with ShaggyStyle on that - completely redundant plugin - use stop with parameters!</description> <content:encoded><![CDATA[<p>I&#8217;m with ShaggyStyle on that &#8211; completely redundant plugin &#8211; use stop with parameters!</p> ]]></content:encoded> </item> <item><title>By: ShaggyStyle</title><link>http://www.webappers.com/2009/12/18/a-solution-of-jquery-animation-queue-buildup/comment-page-1/#comment-31400</link> <dc:creator>ShaggyStyle</dc:creator> <pubDate>Sat, 19 Dec 2009 15:17:34 +0000</pubDate> <guid
isPermaLink="false">http://www.webappers.com/?p=2148#comment-31400</guid> <description>I&#039;ve been using stop() with it&#039;s parameters without problems, and I don&#039;t see the need of a plugin to solve this situation. All you have to do is, instead using just stop(), use stop (true, false):$(&#039;.example2 .anim_queue_example a&#039;)
.hover(function() {
$(this).stop(false,true).animate({ left: 20 }, &#039;fast&#039;);
}, function() {
$(this).stop(false,true).animate({ left: 0 }, &#039;fast&#039;);
});as indicated at http://docs.jquery.com/Effects/stop:stop( [clearQueue], [gotoEnd] )so the false won&#039;t clear the queue, and the true will push de queued animation to it&#039;s end. At least this solution seems good enough for me</description> <content:encoded><![CDATA[<p>I&#8217;ve been using stop() with it&#8217;s parameters without problems, and I don&#8217;t see the need of a plugin to solve this situation. All you have to do is, instead using just stop(), use stop (true, false):</p><p>$(&#8217;.example2 .anim_queue_example a&#8217;)<br
/> .hover(function() {<br
/> $(this).stop(false,true).animate({ left: 20 }, &#8216;fast&#8217;);<br
/> }, function() {<br
/> $(this).stop(false,true).animate({ left: 0 }, &#8216;fast&#8217;);<br
/> });</p><p>as indicated at <a
href="http://docs.jquery.com/Effects/stop" rel="nofollow">http://docs.jquery.com/Effects/stop</a>:</p><p>stop( [clearQueue], [gotoEnd] )</p><p>so the false won&#8217;t clear the queue, and the true will push de queued animation to it&#8217;s end. At least this solution seems good enough for me</p> ]]></content:encoded> </item> <item><title>By: kok aan huis</title><link>http://www.webappers.com/2009/12/18/a-solution-of-jquery-animation-queue-buildup/comment-page-1/#comment-31395</link> <dc:creator>kok aan huis</dc:creator> <pubDate>Sat, 19 Dec 2009 13:18:41 +0000</pubDate> <guid
isPermaLink="false">http://www.webappers.com/?p=2148#comment-31395</guid> <description>How simple, now I can actually use this without looking like an amateur ;-)</description> <content:encoded><![CDATA[<p>How simple, now I can actually use this without looking like an amateur <img
src='http://www.webappers.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>By: Daniel Buchner</title><link>http://www.webappers.com/2009/12/18/a-solution-of-jquery-animation-queue-buildup/comment-page-1/#comment-31376</link> <dc:creator>Daniel Buchner</dc:creator> <pubDate>Sat, 19 Dec 2009 01:21:57 +0000</pubDate> <guid
isPermaLink="false">http://www.webappers.com/?p=2148#comment-31376</guid> <description>Oops, wrong string reference, good call Doug.  To add to that, ignore is also the default link option, so you don&#039;t even need to set it :)It would look like this in the wild: someDIV.tween(&#039;width&#039;, 100);</description> <content:encoded><![CDATA[<p>Oops, wrong string reference, good call Doug.  To add to that, ignore is also the default link option, so you don&#8217;t even need to set it <img
src='http://www.webappers.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p>It would look like this in the wild: someDIV.tween(&#8217;width&#8217;, 100);</p> ]]></content:encoded> </item> <item><title>By: Doug Neiner</title><link>http://www.webappers.com/2009/12/18/a-solution-of-jquery-animation-queue-buildup/comment-page-1/#comment-31374</link> <dc:creator>Doug Neiner</dc:creator> <pubDate>Fri, 18 Dec 2009 22:06:02 +0000</pubDate> <guid
isPermaLink="false">http://www.webappers.com/?p=2148#comment-31374</guid> <description>@Daniel MooTools `link: &#039;cancel&#039;` is the equivalent of jQuery&#039;s stop().animate() chain. The default behavior (`link:&#039;ignore&#039;`) is the MooTools equivalent of this plugin.</description> <content:encoded><![CDATA[<p>@Daniel MooTools `link: &#8216;cancel&#8217;` is the equivalent of jQuery&#8217;s stop().animate() chain. The default behavior (`link:&#8217;ignore&#8217;`) is the MooTools equivalent of this plugin.</p> ]]></content:encoded> </item> <item><title>By: Paul Albrecht</title><link>http://www.webappers.com/2009/12/18/a-solution-of-jquery-animation-queue-buildup/comment-page-1/#comment-31364</link> <dc:creator>Paul Albrecht</dc:creator> <pubDate>Fri, 18 Dec 2009 18:50:16 +0000</pubDate> <guid
isPermaLink="false">http://www.webappers.com/?p=2148#comment-31364</guid> <description>Finally. i had this a few times. and thought i stupid for not finding a better solution than stop()</description> <content:encoded><![CDATA[<p>Finally. i had this a few times. and thought i stupid for not finding a better solution than stop()</p> ]]></content:encoded> </item> <item><title>By: Daniel Buchner</title><link>http://www.webappers.com/2009/12/18/a-solution-of-jquery-animation-queue-buildup/comment-page-1/#comment-31363</link> <dc:creator>Daniel Buchner</dc:creator> <pubDate>Fri, 18 Dec 2009 18:44:25 +0000</pubDate> <guid
isPermaLink="false">http://www.webappers.com/?p=2148#comment-31363</guid> <description>HAHA, this is a jQuery bug I always found hilarious.  Luckily the MooTools Fx library was smarter and has always provided the &#039;link&#039; option &#039;cancel&#039;, it does all the work for you:SomeDIV.set(&#039;tween&#039;, {link:&#039;cancel&#039;}).start(&#039;width&#039;,100);With that simple option set you never need to worry about other animations making your page look amateur!MooTools FTW!</description> <content:encoded><![CDATA[<p>HAHA, this is a jQuery bug I always found hilarious.  Luckily the MooTools Fx library was smarter and has always provided the &#8216;link&#8217; option &#8216;cancel&#8217;, it does all the work for you:</p><p>SomeDIV.set(&#8217;tween&#8217;, {link:&#8217;cancel&#8217;}).start(&#8217;width&#8217;,100);</p><p>With that simple option set you never need to worry about other animations making your page look amateur!</p><p>MooTools FTW!</p> ]]></content:encoded> </item> <item><title>By: Doug Neiner</title><link>http://www.webappers.com/2009/12/18/a-solution-of-jquery-animation-queue-buildup/comment-page-1/#comment-31362</link> <dc:creator>Doug Neiner</dc:creator> <pubDate>Fri, 18 Dec 2009 16:43:08 +0000</pubDate> <guid
isPermaLink="false">http://www.webappers.com/?p=2148#comment-31362</guid> <description>This is great! You run into this all the time, and it seems like a great solution. Thanks for sharing.</description> <content:encoded><![CDATA[<p>This is great! You run into this all the time, and it seems like a great solution. Thanks for sharing.</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 disk
Page Caching using disk (enchanced) (user agent is rejected)
Content Delivery Network via maxcdn.webappers.com (user agent is rejected)

Served from: ps11300.dreamhostps.com @ 2012-02-09 08:05:25 -->
