Created
February 17, 2015 15:59
-
-
Save mchamplain/fb14af60d8dbdba31527 to your computer and use it in GitHub Desktop.
Show a modal only once.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(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