Skip to content

CreativeDream/jquery.notify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jQuery.notify 1.0

jQuery.notify is a jQuery plugin that makes it easy to create alert - success - error - warning - information messages as an alternative the standard alert dialog.

Demo Page

Usage

Styles:

Include the jquery.notify css file in your html page.

<link href="jquery.notify.css" type="text/css" rel="stylesheet" />

Javascript:

Include the jQuery library and jquery.notify script file in your html page.

<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="jquery.notify.min.js"></script>

The function is called 'notify'. So just call it ;)

notify({
	type: "alert", //alert | success | error | warning | info
	title: "jQuery.Notify",
	message: "Super simple Notify plugin.",
	position: {
	    x: "right", //right | left | center
	    y: "top" //top | bottom | center
	},
	icon: '<img src="images/paper_plane.png" />', //<i>, <img>
	size: "normal", //normal | full | small
	overlay: false, //true | false
	closeBtn: true, //true | false
	overflowHide: false, //true | false
	spacing: 20, //number px
	theme: "default", //default | dark-theme
	autoHide: true, //true | false
	delay: 2500, //number ms
	onShow: null, //function
	onClick: null, //function
	onHide: null, //function
	template: '<div class="notify"><div class="notify-text"></div></div>'
});

License

Licensed under MIT license.

About

jQuery.notify is a jQuery plugin that makes it easy to create alert - success - error - warning - information messages as an alternative the standard alert dialog.

Resources

License

Stars

Watchers

Forks

Packages

No packages published