Skip to content

Instantly share code, notes, and snippets.

@xirukitepe
Last active December 11, 2015 22:58
Show Gist options
  • Save xirukitepe/4672970 to your computer and use it in GitHub Desktop.
Save xirukitepe/4672970 to your computer and use it in GitHub Desktop.
FadeOut Div with specific setTimeOut function
# Flashing Message
# Fade flash message
$(document).ready ->
$(".alert").fadeOut 4000
$(".alert").mouseenter ->
$(".alert").stop()
$(".alert").mouseleave ->
$(".alert").fadeOut 4000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment