ikhsan017 / bsnotify

A bootstrap 3 simple notification helper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

##bsnotify

A simple notification halper for Twitter Bootstrap 3, using default bootstrap modal plugin

###Usage

You need to load bootstrap.css and bootstrap.js first before loading jquery.bsnotify

 <link rel="stylesheet" type="text/css" href="bootstrap.min.css" />
 <script type="text/javascript" src="jquery-1.10.1.min.js"></script>
 <script type="text/javascript" src="bootstrap.min.js"></script>
 <script type="text/javascript" src="jquery.bsnotify.js"></script>        

to display simple notification, simply call:

$().notify(type,options)

type could be alert, warning, success, or info. options should be object with title and message property

$().notify('alert',{
    title : 'Notification Title',
    message : 'Some notification message'
})

About

A bootstrap 3 simple notification helper

License:MIT License


Languages

Language:JavaScript 100.0%