0
I’m trying to create a modal bootstrap as a one-page greeting screen. The part of it open with delay I managed to do without problems, but I need that when the user closes it, it will not be shown again the next time that the same login on the screen. The modal code is the bootstrap standard and will contain only simple text.
$(window).on('load',function(){
var delay = 1000;
setTimeout(function(){
$('#notificacao').modal('show');
},delay);
});
The gnome worked out?
– clone por