Skip to content

Instantly share code, notes, and snippets.

@fsuuaas
Created May 1, 2018 07:51
Show Gist options
  • Save fsuuaas/834c9366e3a8aee38f029f96c11137af to your computer and use it in GitHub Desktop.
Save fsuuaas/834c9366e3a8aee38f029f96c11137af to your computer and use it in GitHub Desktop.
<?php if (!isset($_COOKIE['logoalert'])): ?>
<script>
$(window).on('load',function(){
$('#logoModel').modal('show');
setTimeout(function() {$('#logoModel').modal('hide');}, 10000);
});
</script>
<?php
setcookie('logoalert', true, time()+3600); // 1 day
?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment