Skip to content

Instantly share code, notes, and snippets.

@walterdavis
Created September 28, 2012 14:46
Show Gist options
  • Save walterdavis/3800312 to your computer and use it in GitHub Desktop.
Save walterdavis/3800312 to your computer and use it in GitHub Desktop.
var message_box = $('item42').setStyle('z-index: 1000');
$$('body').first().insert(message_box.remove());
var jar = new CookieJar({expires: ''});
//you can also set expires to any number of seconds
if(!jar.get('hide_message')){
message_box.show().observe(
'click',
function(evt){
jar.put('hide_message',true);
this.hide();
}
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment