Skip to content

Instantly share code, notes, and snippets.

@iurevych
Created December 30, 2013 12:52
Show Gist options
  • Save iurevych/8181789 to your computer and use it in GitHub Desktop.
Save iurevych/8181789 to your computer and use it in GitHub Desktop.
var displayMessage = function(data, params) {
var timer,
notice = params.notice || $('.js-validation'),
delay = params.delay || 5000;
clearTimeout(timer);
notice
.html(data)
.fadeIn(300);
timer = setTimeout(function() {
notice.fadeOut(300);
}, delay);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment