ajsr-notify ![Build Status](https://travis-ci.org/ajsoriar/ajsr-notify.svg?branch=master)
![Bower version](https://badge.fury.io/bo/ajsr-notify.svg)
ajsr-notify is a pure javascript plugin to provide simple and customisable notifications. No JQuery needed.
Use it this way
1 Download and Install ajsr-notify:
2 Include dependences:
2.1 ajsr-notify.min.js is under dist
folder.
2.2 Initialize the plugin by referencing the necessary files:
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="dist/ajsr-notify.min.js"></script>
<link rel="stylesheet" type="text/css" href="dist/ajsr-notify.css">
3 Use it!
3.1 This way:
ajsrnotify({
msg: "<b>Welcome!</b> This is amazing!",
type: "success",
position: "center",
timeout: 2000,
theme: null
})
You will get this:
![ajsr-notify basic usage example ajsr-notify basic usage example](https://github.com/ajsoriar/ajsr-notify/raw/HEAD/./demo/ajsr-notify-basic-example.png?raw=true)
5 License
MIT
Copyright (c) 2017
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Free Software, Yeah!