Skip to content

Instantly share code, notes, and snippets.

@etozzato
Created November 4, 2009 11:26
Show Gist options
  • Select an option

  • Save etozzato/225977 to your computer and use it in GitHub Desktop.

Select an option

Save etozzato/225977 to your computer and use it in GitHub Desktop.
<% if flash[:notice] %>
<div id="notice">
<%= flash[:notice] %>
<%= javascript_tag "fade_notice();" %>
</div>
<% end %>
function fade_notice(){
setTimeout("$('notice').fade();", 3500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment