Today I am going to share same kind of facebook like live notification system using jquery and css.
Everyone knows that facebook has a live notification messages that pop ups bottom-left corner.
Using the simple Jquery code,we can use the live notification messages,
<script> $(document).ready(function() { $.sticky('The webpage has loaded!'); var callnotification = function(){ $.sticky('<b>You have a new message!</b>'); } setInterval(callnotification,4000); }); </script>
