notification.js 369 B

1234567891011121314151617
  1. function closeNotification () {
  2. $(".notification").slideUp (200, function () {
  3. $(".notification").remove ();
  4. });
  5. }
  6. $(document).ready (function () {
  7. notif = $(".notification");
  8. if (notif[0] !== undefined) {
  9. timer = setInterval('closeNotification()', 5000);
  10. notif.find ("a.close").click (function () {
  11. closeNotification ();
  12. return false;
  13. });
  14. }
  15. });