Если правильно понял(через явный вызов)
function pushNotifications (classDiv, text) {
var pushNoti = {
classDiv: '',
text: '',
};
pushNoti.classDiv = classDiv;
pushNoti.text = text;
var $OuterDiv = $('<div id="successJsButton"></div>')
.appendTo($('header'))
.addClass(pushNoti.classDiv)
.html(pushNoti.text)
.fadeIn(3000).slideUp(300).delay(800);
};
Css:
#successJsButton {
padding: 15px 100px;
bottom: 20px;
display: none;
border-radius: 5px;
right: 10px;
position: fixed;
color: #fff;
text-align: center;
}
.successJsButtonError {
background: #e26363 !important;
}
.successJsButtonSuccess {
background: #9ae263 !important;
}
Пример:
if ( data.success ) pushNotifications('successJsButtonSuccess', data.success);
else pushNotifications('successJsButtonError', data.error);