-2
I have a following situation: A Popup appears every time you finish a load on the page, the user can click X (close). But every time he enters another page the Popup goes up again and so it is annoying for the user to have to keep closing always. Someone can help me with a solution. Help
$(window).load("document", function(){
setTimeout(() => {
$("#whats-help").slideDown()
}, 2000)
}) // Inicia sempre após a página terminar de carregar.
$("#whats-close").click(function(){
$("#whats-help").slideToggle(500);
})
You have to make a localStorage
– hugocsl
Have any idea how I do with Jquery bro, at close click?
– Paulo Robson
I already gave the tip up there man, now just you research
– hugocsl