Most voted "countdown" questions
12 questions
Sort by count of
-
11
votes4
answers12823
viewsHow to make a countdown with javascript?
Hello guys I don’t understand practically anything Javascript, so for weeks I was trying to make a script that did the following: 00:00:00 1º start a countdown of 20 minutes after clicking a link.…
-
2
votes2
answers985
viewsChronometer between two Angularjs dates
Suppose I have two dates: 2015-11-13T08:00:00 and 2015-11-13T10:00:00, as you can see there is a difference of two hours between these dates. I would like to put a chronometer in my view that shows…
-
2
votes2
answers1031
viewsHow to count down in a Messagebox
Use Delphi XE7, needed to put a countdown on a MessageBox, on the button Não. For example a 10 sec count next to the button caption Não (10) and so it decreases Não (9). My alternative is to create…
-
2
votes1
answer83
viewsCountdown JS not working on safari
I’m developing a website with a countdown. The code works well on the desktop and the timer starts counting perfectly in Firefox and Chrome, but in mobile, specifically in iphone, Safari browser,…
-
2
votes1
answer532
viewsStopwatch running from the first second
Guys I found this code in a forum, I made some modifications only I do not know why the script is only running after 1 second, for example... it works normal updating after 1s, only it does not show…
-
1
votes1
answer52
viewsJavascript help
How do I get this script to run in 10 seconds ?? <script type = "text/javascript"> function simulateClick(x, y) { var clickEvent = document.createEvent('MouseEvents');…
-
0
votes1
answer207
viewsWhen I click the button more than 1 time the count accelerates
People I got from a friend here on the forum a one button script with countdown, that when clicking starts the count. I really appreciate it because it is very good... there is only one problem,…
-
0
votes1
answer109
viewsHow do I maintain and display Countdown when leaving the app?
I’m building an app to run tasks every hour, and I want to show countdown. But when I exit the app, when I return, the countdown restarts. I need that when I return to the app, the countdown is…
-
0
votes2
answers210
viewsCountdown incorrect date
I’m using the Countdownjs to enter a count in my project but it is returning the incorrect day. I am using Angularjs, follows below the directive I created for counting:…
javascript html angularjs angularjs-directives countdownasked 7 years, 8 months ago Maurício Krüger 1,848 -
0
votes1
answer167
viewsCreate a regressive counter (Countdown) from input and store in localStorage
As you can see in my example below, I have a form that plays the data written in the entries (input) html and these are stored in localStorage. In the input=date i need the date provided to be…
-
0
votes1
answer203
viewsJS and HTML5: Countdown Bar only works "on screen"
I’m implementing a small progress bar (.progressbar) that actually works as a "countdown bar" (it’s an inverted progress bar, it starts full and goes down) and will work as a session expiration…
-
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,…