Jump to content

Mobile going to sleep and JS


tsangaris
Go to solution Solved by Psycho,

Recommended Posts

I have created a countdown clock that will be counting down from 100 (looping each second).

 

This is the code:

<script>
		
$(document).ready(function(){
				
	$("#buttonClick").on('click', function(){
			
		var initialValue = $("#countdown").text();
				
		setInterval(function () {
					
			initialValue--;
						
			$("#countdown").text(initialValue);
						
					
		}, 1000);
			
			
	});
			
});
		
			
</script>

<body>
	
  <button id="buttonClick">Click Me</button>
	
  <div id="countdown">100</div>
	
	
</body>

When i click the "Click Me" button the number counts down from 100, 99, 98,97....

 

When try this from a mobile device and while the device is awake, it works just fine.

 

Lets say the counter is on 50 and i press the power button of the mobile device and it sleeps.

 

If i wake the mobile after 40 seconds, i will not see the remaining 10 seconds but something like 40 or 38 seconds.

 

This happens every time and i don't know why.

 

Can someone help?

 

Regards,

 

Christos




			
				


	Edited  by tsangaris
	
	

			
		
Link to comment
Share on other sites

Why would you expect a program to continue to run when you put a phone to sleep? That would kind of defeat the purpose of putting a device to sleep, wouldn't it?

 

The solution is to change your logic to be based off a timestamp. That way once the counter starts up again it will know how many seconds have passed.

Link to comment
Share on other sites

  • Solution

Here's a quick example

 

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
 
$(document).ready(function(){
 
    var totalSeconds = 100;
    var timestamp;
    var endTime;
 
    $("#buttonClick").on('click', function(){
 
        timestamp = new Date();
        endTime = timestamp.getTime() + (totalSeconds * 1000);
 
        var timer = setInterval(function () {
            timestamp = new Date();
            $("#countdown").text(Math.round((endTime - timestamp.getTime()) / 1000));
            if(secondsLeft<=0) { clearInterval(timer);  }
        }, 1000);
    });
});
 
</script>
</head>
 
<body>
    <button id="buttonClick">Click Me</button>
    <div id="countdown">100</div>
</body>
</html>
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.