Most voted "timer" questions
62 questions
Sort by count of
-
0
votes1
answer183
viewsHow can I for timers who were initiated by a task c#
Hello, I’m trying to understand a situation but so far I haven’t been able to solve it. Imagine that we have an X class that has a timer that is started by the constructor. Now imagine that this…
-
0
votes2
answers438
viewsDisplay a div for a given time Jquery
I wonder if there’s any way I can present the contents of a div at a certain time. Because in this case I’m inserting an html into the div and after a while I’d like it to disappear, there’s some…
-
0
votes0
answers96
viewsLimit quantity by time
How can I limit a certain feature in PHP to run after a certain time set by me? Example: I have a button, I click it and it sends 50 users to a field called count on my table, and also Seto a time…
-
0
votes1
answer34
viewsMy setInterval function is not working as intended
Here’s the code: //Função para contar os segudos function conta_seg(){ sec++; if (sec < 10 && min == 0) { document.getElementById("conta-tempo").innerHTML = "00:0" + sec; }else if (sec…
-
0
votes1
answer31
viewsChange daughter class output in a time counter
Good morning, I’m trying to create a basketball scoreboard to start learning programming in java/android studio. I have created a class for the game time clock called timer that is working very…
-
0
votes2
answers21
viewsHow to use a class selector instead of the id "clock" for the counter to work in multiple instances (Divs)?
getElementsByClassName() did not work. document.addEventListener('DOMContentLoaded', timerOffer); function timerOffer() { // Set the date we're counting down to var countDownDate = new Date("12 31,…
-
-1
votes1
answer77
viewsindex of Bounds and timer problems
Next, I have a timer that fills 2 fields in a webbrowser, the same makes the following function... var pega : string; begin pega := Listaimportados.Items[i]; I := i +1 nome.text := Copy(pega, 0,…
-
-1
votes1
answer489
viewsHow to know if a System.Timers.Timer is running?
I need to know if a timer is running, in case you’re not, I’ll start it,
-
-1
votes1
answer584
viewsTimer in PHP calling Function
Someone has a simple example of a timer on PHP, to call a function at each predetermined time. For example, to check if a certain time or date/time has already arrived.
-
-1
votes1
answer22
viewsCapture images simultaneously on two USB cameras at regular intervals on Android
Hello I would like some tips on how to develop on Android an application for capturing simultaneous photos at regular intervals, from two USB cameras (MJPEG M12 Lens AR0330 Dual Stereo Micro Mini…
-
-1
votes3
answers57
viewsConvert stopwatch to hh mm ss format
My stopwatch is running without format 00:00:00 I created a div in index.html <!-- TIMER --> <div class="container"> <span id="display">00:00:00</span> </div> No js…
-
-5
votes2
answers48
viewsHow do I fire an Alert with the click of a button in javascript?
let iniciar = document.getElementById("iniciar") let pausar = document.querySelector('.pausar') iniciar.addEventListener("click", function(event) { alert('Cliquei no iniciar') }, true);…