notify js example
Example 1: notify js
$.notify("BOOM!", "error");
Example 2: notify js
var h5 = $("<h5/>").append("You MUST have some Foo !")
$.notify({
title: h5,
button: 'Ok'
}, {
style: 'foo',
autoHide: false,
clickToHide: false
});