事前にお読みいただきありがとうございます。
ユーザーに警告を表示するメッセージを表示しようとしています。これは正常に実行されましたが、関数が使用するアクションを繰り返すと、メッセージが再度表示されません。
どんな助けでもいただければ幸いです!
//take 5 seconds off the timer
var count = parseInt($('.timerCount').html());
$('.timerCount').html(count - 5);
$('.timerWarnings').html("5 seconds has been deducted from the timer");
$('.timerWarnings').fadeOut("slow");