<?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: Slide In and Slide Out Status Message Box using jQuery</title> <atom:link href="http://www.developersnippets.com/2009/03/24/slide-in-and-slide-out-status-message-box-using-jquery/feed/" rel="self" type="application/rss+xml" /><link>http://www.developersnippets.com/2009/03/24/slide-in-and-slide-out-status-message-box-using-jquery/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=slide-in-and-slide-out-status-message-box-using-jquery</link> <description>An Embodiment for Developers</description> <lastBuildDate>Wed, 01 Feb 2012 15:41:17 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: Bradley Reed</title><link>http://www.developersnippets.com/2009/03/24/slide-in-and-slide-out-status-message-box-using-jquery/comment-page-1/#comment-2967</link> <dc:creator>Bradley Reed</dc:creator> <pubDate>Wed, 17 Feb 2010 08:35:15 +0000</pubDate> <guid isPermaLink="false">http://www.developersnippets.com/?p=889#comment-2967</guid> <description>How could I call this as a simple javascript function to say something like &quot;Login Success!&quot; when the login is successful.</description> <content:encoded><![CDATA[<p>How could I call this as a simple javascript function to say something like &#8220;Login Success!&#8221; when the login is successful.</p> ]]></content:encoded> </item> <item><title>By: admin</title><link>http://www.developersnippets.com/2009/03/24/slide-in-and-slide-out-status-message-box-using-jquery/comment-page-1/#comment-1614</link> <dc:creator>admin</dc:creator> <pubDate>Wed, 25 Mar 2009 18:18:25 +0000</pubDate> <guid isPermaLink="false">http://www.developersnippets.com/?p=889#comment-1614</guid> <description>Hi Mike,Here is the entire code with &quot;stop()&quot; function$(document).ready(function(){ $(&quot;.req_img&quot;).fadeTo(&quot;slow&quot;, 0.5); // When page loads, set the opacity of images to 50% $(&quot;.req_img&quot;).hover(function(){ $(this).fadeTo(&quot;slow&quot;, 1.0); // On mouse hover, set the opacity of images to 100% $(&quot;#statusText&quot;).text($(this).attr(&#039;alt&#039;)); // Capture the &#039;alt&#039; attribute values of images $(&quot;#messagebox&quot;).stop().animate({opacity: &quot;show&quot;, top: &quot;0&quot;}, &quot;slow&quot;); // show message box with slow opacity },function(){ $(this).fadeTo(&quot;slow&quot;, 0.5); // On Mouseout set the opacity to 50% $(&quot;#messagebox&quot;).stop().animate({opacity: &quot;hide&quot;, top: &quot;-300&quot;}, &quot;slow&quot;); // hide message box with slow opacity }); });I will update the code accordingly.... Once again, thanks for your valuable comment.Thanks, Vivek</description> <content:encoded><![CDATA[<p>Hi Mike,</p><p>Here is the entire code with &#8220;stop()&#8221; function</p><p>$(document).ready(function(){<br /> $(&#8220;.req_img&#8221;).fadeTo(&#8220;slow&#8221;, 0.5); // When page loads, set the opacity of images to 50%<br /> $(&#8220;.req_img&#8221;).hover(function(){<br /> $(this).fadeTo(&#8220;slow&#8221;, 1.0); // On mouse hover, set the opacity of images to 100%<br /> $(&#8220;#statusText&#8221;).text($(this).attr(&#8216;alt&#8217;)); // Capture the &#8216;alt&#8217; attribute values of images<br /> $(&#8220;#messagebox&#8221;).stop().animate({opacity: &#8220;show&#8221;, top: &#8220;0&#8243;}, &#8220;slow&#8221;); // show message box with slow opacity<br /> },function(){<br /> $(this).fadeTo(&#8220;slow&#8221;, 0.5); // On Mouseout set the opacity to 50%<br /> $(&#8220;#messagebox&#8221;).stop().animate({opacity: &#8220;hide&#8221;, top: &#8220;-300&#8243;}, &#8220;slow&#8221;); // hide message box with slow opacity<br /> });<br /> });</p><p>I will update the code accordingly&#8230;. Once again, thanks for your valuable comment.</p><p>Thanks,<br /> Vivek</p> ]]></content:encoded> </item> <item><title>By: admin</title><link>http://www.developersnippets.com/2009/03/24/slide-in-and-slide-out-status-message-box-using-jquery/comment-page-1/#comment-1612</link> <dc:creator>admin</dc:creator> <pubDate>Wed, 25 Mar 2009 03:17:21 +0000</pubDate> <guid isPermaLink="false">http://www.developersnippets.com/?p=889#comment-1612</guid> <description>Hi Mike,Thanks for your valuable comment, will check on it and will let you know Mike.Thanks, Vivek</description> <content:encoded><![CDATA[<p>Hi Mike,</p><p>Thanks for your valuable comment, will check on it and will let you know Mike.</p><p>Thanks,<br /> Vivek</p> ]]></content:encoded> </item> <item><title>By: Mike Dedmon</title><link>http://www.developersnippets.com/2009/03/24/slide-in-and-slide-out-status-message-box-using-jquery/comment-page-1/#comment-1610</link> <dc:creator>Mike Dedmon</dc:creator> <pubDate>Wed, 25 Mar 2009 02:36:36 +0000</pubDate> <guid isPermaLink="false">http://www.developersnippets.com/?p=889#comment-1610</guid> <description>I&#039;m definitely a beginner with jquery.  After playing with the demo, I noticed that the animation &quot;builds&quot; when I hover/no hover quickly. I&#039;ve seen someone use the &quot;stop()&quot; function in other tuts.  Wouldn&#039;t you use that here?  How would you use it? I&#039;ve tried putting it inline before the animate() and .fadeTo() functions, but it doesn&#039;t seem to work completely right.  Eventually the messagebox becomes hidden and I can&#039;t get it back without a refresh.Any ideas?</description> <content:encoded><![CDATA[<p>I&#8217;m definitely a beginner with jquery.  After playing with the demo, I noticed that the animation &#8220;builds&#8221; when I hover/no hover quickly. I&#8217;ve seen someone use the &#8220;stop()&#8221; function in other tuts.  Wouldn&#8217;t you use that here?  How would you use it? I&#8217;ve tried putting it inline before the animate() and .fadeTo() functions, but it doesn&#8217;t seem to work completely right.  Eventually the messagebox becomes hidden and I can&#8217;t get it back without a refresh.</p><p>Any ideas?</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 341/342 objects using disk: basic

Served from: www.developersnippets.com @ 2012-02-07 16:59:44 -->
