Skip to content

Instantly share code, notes, and snippets.

@voxpelli
Created March 11, 2010 10:39
Show Gist options
  • Save voxpelli/329025 to your computer and use it in GitHub Desktop.
Save voxpelli/329025 to your computer and use it in GitHub Desktop.
A humanized message inspired little jQuery snippet
var humanizedLite = function (elem, speed) {
setTimeout(function () {
$(document).one('mousemove', function () {
elem.slideUp(speed ? speed : 400, function () {
elem.remove();
});
});
}, 1500);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment