Skip to content

Instantly share code, notes, and snippets.

@vieron
Created October 7, 2010 12:01
Show Gist options
  • Save vieron/615006 to your computer and use it in GitHub Desktop.
Save vieron/615006 to your computer and use it in GitHub Desktop.
Probando
var FLUSTHEFLASH = {
delay: 5000,
mclass: ".flashmsg",
opacity: "0.9",
show: function() {
$(this.mclass).hide();
$(this.mclass).css("opacity", this.opacity)
$(this.mclass).fadeIn("slow").fadeTo((this.delay), 1).fadeOut("slow");
return false;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment