Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Tim Morgan http://timmorgan.org

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Rails Notice/Warning Flash Message

Somewhat lame, but handy nonetheless.

   1  
   2  <% if flash[:warning] or flash[:notice] %>
   3    <div id="notice" <% if flash[:warning] %>class="warning"<% end %>>
   4      <%= flash[:warning] || flash[:notice] %>
   5    </div>
   6    <script type="text/javascript">
   7      setTimeout("new Effect.Fade('notice');", 15000)
   8    </script>
   9  <% end %>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS