<?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: Use Gritter for Jquery (Growl) for flash in CakePHP</title>
	<atom:link href="http://duckranger.com/2010/04/use-gritter-for-jquery-growl-for-flash-in-cakephp/feed/" rel="self" type="application/rss+xml" />
	<link>http://duckranger.com/2010/04/use-gritter-for-jquery-growl-for-flash-in-cakephp/</link>
	<description>JUST DOING IT</description>
	<lastBuildDate>Fri, 27 Jan 2012 15:22:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Steve</title>
		<link>http://duckranger.com/2010/04/use-gritter-for-jquery-growl-for-flash-in-cakephp/comment-page-1/#comment-2330</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 08 Nov 2011 22:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=109#comment-2330</guid>
		<description>FYI, using the html helper for loading gritter...

echo $this-&gt;Html-&gt;css(array(&#039;jquery.gritter&#039; ));
echo $this-&gt;Html-&gt;script(array(&#039;jquery-1.6.3.min&#039;,&#039;jquery.gritter.min&#039;));</description>
		<content:encoded><![CDATA[<p>FYI, using the html helper for loading gritter&#8230;</p>
<p>echo $this-&gt;Html-&gt;css(array(&#8216;jquery.gritter&#8217; ));<br />
echo $this-&gt;Html-&gt;script(array(&#8216;jquery-1.6.3.min&#8217;,'jquery.gritter.min&#8217;));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Success</title>
		<link>http://duckranger.com/2010/04/use-gritter-for-jquery-growl-for-flash-in-cakephp/comment-page-1/#comment-140</link>
		<dc:creator>Success</dc:creator>
		<pubDate>Tue, 08 Jun 2010 19:53:32 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=109#comment-140</guid>
		<description>Hello from Vyatka River!!! Thank you for information! It?s a good idea for next full revision... 
Write more!!! :)))</description>
		<content:encoded><![CDATA[<p>Hello from Vyatka River!!! Thank you for information! It?s a good idea for next full revision&#8230;<br />
Write more!!! <img src='http://duckranger.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duck Ranger</title>
		<link>http://duckranger.com/2010/04/use-gritter-for-jquery-growl-for-flash-in-cakephp/comment-page-1/#comment-64</link>
		<dc:creator>Duck Ranger</dc:creator>
		<pubDate>Thu, 06 May 2010 20:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=109#comment-64</guid>
		<description>@Jeremy: I don&#039;t have much RoR experience, but I know that the error_messages_for method returns a div element.
In your erb file, add:

[cc lang=&quot;javascript&quot;]
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function() {
  $(&quot;#the-div-id&quot;).gritter.add({
        title: &quot;Error&quot;,
        text: ... ,
        image: ...
        //sticky: true
    });
});
&lt;/script&gt;
[/cc]

replacing &lt;strong&gt;#the-div-id &lt;/strong&gt;with the div id that error_messages_for creates.
Make sure you include the correct jQuery files.
Good luck
</description>
		<content:encoded><![CDATA[<p>@Jeremy: I don&#8217;t have much RoR experience, but I know that the error_messages_for method returns a div element.<br />
In your erb file, add:</p>
<div class="codecolorer-container javascript mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="javascript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span><br />
$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#the-div-id&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">gritter</span>.<span style="color: #660066;">add</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; title<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;Error&quot;</span><span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; text<span style="color: #339933;">:</span> ... <span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; image<span style="color: #339933;">:</span> ...<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #006600; font-style: italic;">//sticky: true</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></div></div>
<p>replacing <strong>#the-div-id </strong>with the div id that error_messages_for creates.<br />
Make sure you include the correct jQuery files.<br />
Good luck</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy Savoy</title>
		<link>http://duckranger.com/2010/04/use-gritter-for-jquery-growl-for-flash-in-cakephp/comment-page-1/#comment-63</link>
		<dc:creator>Jeremy Savoy</dc:creator>
		<pubDate>Thu, 06 May 2010 20:12:49 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=109#comment-63</guid>
		<description>This is really great! I wonder what the code would look like to integrate this into a RoR application as compared to PHP ?</description>
		<content:encoded><![CDATA[<p>This is really great! I wonder what the code would look like to integrate this into a RoR application as compared to PHP ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MarkSpizer</title>
		<link>http://duckranger.com/2010/04/use-gritter-for-jquery-growl-for-flash-in-cakephp/comment-page-1/#comment-44</link>
		<dc:creator>MarkSpizer</dc:creator>
		<pubDate>Mon, 03 May 2010 06:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://duckranger.com/?p=109#comment-44</guid>
		<description>great post as usual!</description>
		<content:encoded><![CDATA[<p>great post as usual!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

