Skip to content

Instantly share code, notes, and snippets.

@mchamplain
Created February 17, 2015 15:59
Show Gist options
  • Save mchamplain/fb14af60d8dbdba31527 to your computer and use it in GitHub Desktop.
Save mchamplain/fb14af60d8dbdba31527 to your computer and use it in GitHub Desktop.
Show a modal only once.
$(function() {
if( document.cookie.indexOf( "facebookModalPromoShowOnce" ) < 0 ) {
$( "#dialog-facebook-message" ).dialog({
modal: true,
resizable: false,
show: 'slide',
buttons: {
Ok: function() {
$( this ).dialog( "close" );
document.cookie = "facebookModalPromoShowOnce=true; expires=Fri, 31 Dec 9999 23:59:59 GMT; path=/";
}
}
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment