<?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: jBar: A jQuery Notification Plugin</title>
	<atom:link href="http://tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/</link>
	<description>Useful resources and inspiration for creative minds</description>
	<lastBuildDate>Tue, 22 May 2012 15:12:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: omer engin birim</title>
		<link>http://tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/comment-page-2/#comment-308700</link>
		<dc:creator>omer engin birim</dc:creator>
		<pubDate>Mon, 05 Dec 2011 19:51:13 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=729#comment-308700</guid>
		<description>Amazing work!Thank you..</description>
		<content:encoded><![CDATA[<p>Amazing work!Thank you..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nazim Zeeshan</title>
		<link>http://tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/comment-page-2/#comment-282301</link>
		<dc:creator>Nazim Zeeshan</dc:creator>
		<pubDate>Tue, 22 Nov 2011 08:04:30 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=729#comment-282301</guid>
		<description>Do not forget to include a div with class=&quot;content&quot; on top.

and if you want the norification bar to appear on load, just remove line 9 and 30 from jquery.bar.js

Nice stuff, Thanks Cody</description>
		<content:encoded><![CDATA[<p>Do not forget to include a div with class=&#8221;content&#8221; on top.</p>
<p>and if you want the norification bar to appear on load, just remove line 9 and 30 from jquery.bar.js</p>
<p>Nice stuff, Thanks Cody</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/comment-page-2/#comment-210663</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Sat, 08 Oct 2011 12:26:32 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=729#comment-210663</guid>
		<description>How about an update implementing the features people are asking for?</description>
		<content:encoded><![CDATA[<p>How about an update implementing the features people are asking for?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: billboc</title>
		<link>http://tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/comment-page-2/#comment-144090</link>
		<dc:creator>billboc</dc:creator>
		<pubDate>Sun, 31 Jul 2011 22:08:35 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=729#comment-144090</guid>
		<description>hello
thank&#039;s for sharing your great work !
i&#039;m trying to display the notification automatically on the load of the page... but not luck :(

can you help me ?
thank you</description>
		<content:encoded><![CDATA[<p>hello<br />
thank&#8217;s for sharing your great work !<br />
i&#8217;m trying to display the notification automatically on the load of the page&#8230; but not luck :(</p>
<p>can you help me ?<br />
thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: theyouyou</title>
		<link>http://tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/comment-page-2/#comment-139161</link>
		<dc:creator>theyouyou</dc:creator>
		<pubDate>Fri, 22 Jul 2011 15:59:49 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=729#comment-139161</guid>
		<description>Get the hacked version on this link :
https://github.com/ryanohs/Blog/tree/master/JBar/</description>
		<content:encoded><![CDATA[<p>Get the hacked version on this link :<br />
<a href="https://github.com/ryanohs/Blog/tree/master/JBar/" rel="nofollow">https://github.com/ryanohs/Blog/tree/master/JBar/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Silas Olatayo</title>
		<link>http://tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/comment-page-2/#comment-118367</link>
		<dc:creator>Silas Olatayo</dc:creator>
		<pubDate>Thu, 30 Jun 2011 22:53:44 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=729#comment-118367</guid>
		<description>Sorry for the multiple post; am just trying to share my hacks:

If you disable the timeout then you won&#039;t be able to call multiple ordered instance. If you page is AJAX powered and you need to display a new message if the previous is still available just do this:

Add

if($(&#039;.jbar:visible&#039;).length){
					$(&#039;.jbar:visible&#039;).fadeOut(&#039;fast&#039;,function(){
						$(this).remove();
					});
				}
after $this.ready(function(e){
and remove or comment
				//if(!$(&#039;.jbar&#039;).length){</description>
		<content:encoded><![CDATA[<p>Sorry for the multiple post; am just trying to share my hacks:</p>
<p>If you disable the timeout then you won&#8217;t be able to call multiple ordered instance. If you page is AJAX powered and you need to display a new message if the previous is still available just do this:</p>
<p>Add</p>
<p>if($(&#8216;.jbar:visible&#8217;).length){<br />
					$(&#8216;.jbar:visible&#8217;).fadeOut(&#8216;fast&#8217;,function(){<br />
						$(this).remove();<br />
					});<br />
				}<br />
after $this.ready(function(e){<br />
and remove or comment<br />
				//if(!$(&#8216;.jbar&#8217;).length){</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Silas Olatayo</title>
		<link>http://tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/comment-page-2/#comment-118360</link>
		<dc:creator>Silas Olatayo</dc:creator>
		<pubDate>Thu, 30 Jun 2011 22:29:51 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=729#comment-118360</guid>
		<description>Also you can disable auto fade-out by replacing timeout = setTimeout(&#039;$.fn.bar.removebar()&#039;,o.time); with timeout = ((o.time &gt; 0)?setTimeout(&#039;$.fn.bar.removebar()&#039;,o.time):&#039;&#039;);

and set your you config to

message : &#039;Your profile customization has been saved!&#039;,
time  : 0</description>
		<content:encoded><![CDATA[<p>Also you can disable auto fade-out by replacing timeout = setTimeout(&#8216;$.fn.bar.removebar()&#8217;,o.time); with timeout = ((o.time &gt; 0)?setTimeout(&#8216;$.fn.bar.removebar()&#8217;,o.time):&#8221;);</p>
<p>and set your you config to</p>
<p>message : &#8216;Your profile customization has been saved!&#8217;,<br />
time  : 0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Silas Olatayo</title>
		<link>http://tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/comment-page-2/#comment-118352</link>
		<dc:creator>Silas Olatayo</dc:creator>
		<pubDate>Thu, 30 Jun 2011 22:08:26 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=729#comment-118352</guid>
		<description>It&#039;s advisable to use insertAfter($(&#039;body&#039;)) instead of insertBefore($(&#039;.content&#039;)) on _wrap_bar.append(_message_span).append(_remove_cross).hide().insertAfter($(&#039;body&#039;)).fadeIn(&#039;fast&#039;);

Cuz most users won&#039;t probably notice the class .content existence.</description>
		<content:encoded><![CDATA[<p>It&#8217;s advisable to use insertAfter($(&#8216;body&#8217;)) instead of insertBefore($(&#8216;.content&#8217;)) on _wrap_bar.append(_message_span).append(_remove_cross).hide().insertAfter($(&#8216;body&#8217;)).fadeIn(&#8216;fast&#8217;);</p>
<p>Cuz most users won&#8217;t probably notice the class .content existence.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/comment-page-1/#comment-117794</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Wed, 29 Jun 2011 20:37:35 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=729#comment-117794</guid>
		<description>I really like this plugin but can&#039;t seem to get it working without an action call.  Is it possible to show the jbar after I recive a success message from a jquery post method?

Thanks for a great plugin!</description>
		<content:encoded><![CDATA[<p>I really like this plugin but can&#8217;t seem to get it working without an action call.  Is it possible to show the jbar after I recive a success message from a jquery post method?</p>
<p>Thanks for a great plugin!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony Lea</title>
		<link>http://tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/comment-page-1/#comment-88676</link>
		<dc:creator>Tony Lea</dc:creator>
		<pubDate>Fri, 27 May 2011 14:19:23 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=729#comment-88676</guid>
		<description>Hey, Thanks for this :)

I wrote a small article on the jBar plugin: http://www.tonylea.com/2011/looking-for-a-jquery-twitter-notification-bar/

Thanks again.</description>
		<content:encoded><![CDATA[<p>Hey, Thanks for this :)</p>
<p>I wrote a small article on the jBar plugin: <a href="http://www.tonylea.com/2011/looking-for-a-jquery-twitter-notification-bar/" rel="nofollow">http://www.tonylea.com/2011/looking-for-a-jquery-twitter-notification-bar/</a></p>
<p>Thanks again.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/feed/ ) in 0.20153 seconds, on May 22nd, 2012 at 4:07 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 22nd, 2012 at 5:07 pm UTC -->
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Quick Cache Is Fully Functional :-) ... A Quick Cache file was just served for (  tympanus.net/codrops/2009/10/29/jbar-a-jquery-notification-plugin/feed/ ) in 0.00019 seconds, on May 22nd, 2012 at 4:23 pm UTC. -->
