I have a modal window that loads on index page using the following command,
data-reveal-onready="Register"
$(document).ready(function () {
$('[data-reveal-onready]').reveal();
});
I want to add a php if statement on the data-reveal-onready to load only once per session on the homepage and when the user visits the homepage again it will not appear on load.
The modal is a registration form so obviously the modal window may be needed again and it will still show when clicking on register button.
I am using codeigniter and reveal modal.
Many thanks
Perhaps use CI’s session class?