Last active
May 22, 2019 16:27
-
-
Save omurphy27/391d2d58eeb7a4603108 to your computer and use it in GitHub Desktop.
Show bootstrap modal window only once onload via JS Cookie.js
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This will fix the modal to show only once
if ( !Cookies.get('popup') ) { setTimeout( function() { $('#siteModal').modal().on('shown.bs.modal', function() { Cookies.set('popup', 'true', { expires: 3, path: "/" }); }); }, 600); }