notify javascript code example
Example 1: notify jquery
$.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
});