Sunday, May 19, 2024
 Popular · Latest · Hot · Upcoming
188
rated 0 times [  194] [ 6]  / answers: 1 / hits: 34623  / 10 Years ago, tue, july 15, 2014, 12:00:00

I have this code that shows alert when it's 30 minutes before event in calendar but I want to show it only once when user comes to page (in that 30min). Now it shows on every page refresh and also on calendar refresh (in that 30min) because it is set to refresh events after period of time. How to display this alert just once?



var mili = event.start.getTime() - now.getTime();
if(mili < 1800000 && mili > 0){
$('.alert').dialog({
buttons: [{
text: OK,
click: function() {
$( this ).dialog( close );
}
}]
});
}

More From » jquery

 Answers
13

You can use localStorage (not compatible with older browsers):



<script type=text/javascript>
var alerted = localStorage.getItem('alerted') || '';
if (alerted != 'yes') {
alert(My alert.);
localStorage.setItem('alerted','yes');
}
</script>


Or you can use cookies, give a look to this answer for a full example code:
https://stackoverflow.com/a/21567127/3625883


[#70197] Saturday, July 12, 2014, 10 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
renag

Total Points: 22
Total Questions: 97
Total Answers: 95

Location: Albania
Member since Sun, Nov 22, 2020
4 Years ago
;