I'm sure someone already figured this out, but I couldn't seem to have found it on my end.
What I have is a pretty basic countdown where a user puts the amount of minutes into the input field, click the button, and it counts down the minutes.
What I would like to know is for just the countdown to ignore the page when it refreshes (to just continue on as it was). At the moment, it just stops the countdown.
Here is what I have so far.
HTML:
<form>
<input id="tminus" placeholder="0:00"></input>
<input id="request" placeholder="Enter Minutes here"></input>
<a href="#" class="button enterTime">Submit Time</a>
<input type="reset" value="Clear form" />
</form>
JS:
$('.enterTime').click(function () {
var reqVal = $('#request').val();
var parAmt = parseInt(reqVal);
var totalAmount = parAmt * 60;
$('#request').val(" ");
var timeloop, timeSet = function () {
totalAmount--;
var minutes = parseInt(totalAmount/60);
var seconds = parseInt(totalAmount%60);
if(seconds < 10)
seconds = "0"+seconds;
$('#tminus').val(minutes + ":" + seconds);
};
var timeloop = setInterval(timeSet, 1000);
})
Thank you for all the help.
$(document).ready, see if its set and if it is, start your time from the seconds left.