Get start

About

Tired of the notification plugins that something is always missing? Bird Alert came to save your life. Fully customizable and easy to use, now your application will have beautiful alert messages.

Get Bird Alert

Project on Github Download Version 1.0.1


Requirements

jQuery and Animate CSS

Install

<html>
  <head>
    <title>Bird Alert</title>
    <link rel="stylesheet" href="animate.css">
    <link rel="stylesheet" href="bird-alert.css">
  </head>
  <body>
    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript" src="bird-alert.min.js"></script>
  </body>
<html>

Usage

var birdAlert = new BirdAlert({zIndex: 2100});

$('#btnBasic').on('click', function () {
	birdAlert.notify({
		msg: 'Basic mensage', 
		title: 'Success', 
		className: 'success'
	});
});