notbar - not notification bar

what is notbar?

notbar is not a notificiation bar! ok, notbar in fact is a simple notification bar for javascript applications and websites, but it can do so much more.
  • display messages and notifications
  • display additional info on website
  • easy integration into your website

download notbar

you can download notbar using the link(s) below:

see it in action

add success notification JSAX.notBar.add('Type: ok','ok'); add failure notification (as object) JSAX.notBar.add({
  type:'no',
  text:'This is of type NO'
});

1-2-3 setup

following these 3 simple steps you'll have your notbar running in 5min

step 1: copy files

copy folders js/ and themes/ to the root of your webproject

step 2: add markup

add these lines to your index: /* choose notbar-theme */
JSAX.notBar.conf.theme = "snowish";

step 3: add loader

window.onload = function(){
  JSAX.notBar.init(['text',{
  text:'test',
  type:'critical'
}]);
}
notbar is loading ...