SlideNote is a customizable, flexible jQuery plugin that makes it easy to display sliding notifications on your website or in your web application.
SlideNote is compatible with jQuery 1.4.4 and current versions of major browsers. IE8 is the only version of Internet Explorer that is officially supported.
How To Use
$(
'#myNotification'
).slideNote({
where: 640,
corner:
'left'
,
url:
'ajax.html'
,
container:
'<b style="color:black;background-color:#a0ffff">note</b>'
,
closeImage:
'/images/close.png'
,
displayCount: 3,
onSlideIn:
function
() { alert(
'Displayed!'
); },
onSlideOut:
function
() { alert(
'Hidden!'
); }
});