Guest User

Untitled

a guest
Feb 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. //jgrowl announcements. ajax GET to hide ann/store cookie
  2. $.jGrowl.defaults.closer = false;
  3. $("#announcements_box").css("display","none");
  4. $("#announcements_box .announcement").each(function(){
  5. $.jGrowl(this.textContent,{ sticky:true, close:function(e,m,o){hide_announcements();} });
  6. });
  7. function hide_announcements(){
  8. $.get(
  9. '/hide_announcements'
  10. );
  11. $("#announcements_box").fadeOut();
  12. return false;
  13. }
Add Comment
Please, Sign In to add comment