Quantcast
Channel: W3lessons.info » message box | W3lessons.info
Viewing all articles
Browse latest Browse all 12

Facebook like Live Notification Message using jQuery

$
0
0

Everyone knows that facebook has a live notification messages that pop ups bottom-left corner.  Today I am going to share same kind of facebook like live notification system using jquery and css.

facebook-live-notification

facebook like live notification jquery

Jquery Code

$(document).ready(function() {
	 $.sticky('The page has loaded!');
 });

Html Usage

<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="script.js"></script>
<link rel="stylesheet" href="script.css" type="text/css" />

Notification position can also be customizable. By default it is top-right. Other options are bottom-right, bottom-left, top-left.

Autoclose option is also there.

Please don’t forget to share and subscribe to latest updates of the blog. Also any comments and feedback are all welcome!

Thanks!

View Demo Download Now


Viewing all articles
Browse latest Browse all 12

Trending Articles