Usando a library toastr

by Yure Pereira

HTML

<link href="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css" rel="stylesheet"/>
<script src="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>

JavaScript

$(function() {

	$erro = 1;

  if ($erro == 1) {
    $msg = 'Mensagem de erro.';
  } else {
    $msg = 'Mensagem de sucesso.';
  }

  toastr.info($msg);

});