Skip to content

Instantly share code, notes, and snippets.

@imakewebthings
Created May 27, 2013 20:14
Show Gist options
  • Save imakewebthings/5658875 to your computer and use it in GitHub Desktop.
Save imakewebthings/5658875 to your computer and use it in GitHub Desktop.
Super simple notify
var notify = function(message) {
var $message = $('<p style="display:none;">' + message + '</p>');
$('.notifications').append($message);
$message.slideDown(300, function() {
window.setTimeout(function() {
$message.slideUp(300, function() {
$message.remove();
});
}, 2000);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment