I'm trying to create a timer that visibly ticks down the seconds (from 5 minutes or something -- though here I'm using 5 seconds just so have quicker feedback on the alert) after somebody's placed an order on my site til when they pay. If they haven't paid by the time the timer runs out, a delay_job I made will roll back the order.
I'm bad at javascript, and what I tried isn't working at all. Here's my shot at it (this is within a document.ready function):
function countdown() {
setInterval(function(){myTimer()},1000);
};
function myTimer() {
var parentTr = $(this).parents("tr");
var status = $(parentTr).find(".js-status").attr('data-status');
if (status === 0) {
var timeLeft = 30000;
document.getElementById(".js-timer").html=timeLeft;
if (timeLeft === 0) {
alert("Time Out");
};
};
};
In my view, I've got these lines that I was hoping the JS would pick up and use. But it isn't working. (And won't work when I arbitrarily say that var status = 0).
<tr>
<th class="js-timer"></th>
<th class="js-status" data-status=<%= @order.status %> ></th>
...
</tr>
Any idea what I'm doing wrong or how to do this better?