Guest User

Untitled

a guest
May 22nd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Show a message box
  2. haste.prototype.showMessage = function(msg, cls) {
  3.    var msgBox = $('<li class="'+(cls || 'info')+'">'+msg+'</li>');
  4.    $('#messages').prepend(msgBox);
  5.    setTimeout(function() {
  6.      msgBox.slideUp('fast', function() { $(this).remove(); });
  7.    }, 3000);
  8.  };
Add Comment
Please, Sign In to add comment