0
votes
2answers
22 views

How to disable button from being clicked before a function has finished in javascript

Okay, so I have a button without any Id but when it is clicked it starts a function called buttonClick. This function basically controls a slot machine(poke machine) it's images, winnings etc. Note, ...
0
votes
3answers
22 views

Class variables in JavaScript and setInterval

Since I need to pass an anonymous function to setInterval if I want parameters, I tried using the below code. Originally I had it calling this.countUp, but as that returned NaN I did some reading and ...
1
vote
4answers
51 views

How can I start and stop multiple JavaScript timers?

I want to run a timer in JavaScript for 30 seconds, play a beeping .WAV file, then count 10 seconds and play the beep again. I want this to repeat until either a desired time is hit or the user ...
3
votes
3answers
110 views

Jquery/Javascript timer that doesn't restart on refresh

this is my first question on SO :) I need a timer in jQuery or javascript that will countdown 15 minutes, and than show a close button. Also, when user refreshes the page it should not reset, but ...
0
votes
2answers
44 views

Looping Javascript timer

pI am trying to run sequential countdown timers but can't figure out how to wait for the timer to finish before moving onto the next item. for(var i = 0; i < 5; i++) { var count = 5; var ...
-3
votes
1answer
44 views

PHP Countdown like Amazon Delivery [closed]

I have been wondering this for a while and has searched for an answer over the internet but still no luck. My question is: How do I create a timer be it in Javascript or PHP like the one amazon uses ...
-3
votes
3answers
51 views

setTimeout() is not working as it should be [closed]

I need to be able to wait certain amount of time when the scroll event occurs. Code: $(window).scroll(function() { if($(window).scrollTop() + $(window).height() == $(document).height()) { ...
0
votes
0answers
16 views

Clear out an image with JS after 10 sec

I have this problem with clearing out an image. I got this Drag-and-drop function (JS) which "uploads" an image to my local webpage (images uploaded is gone when updating the page). What I want to ...
1
vote
0answers
39 views

setTimeout unpredictable behavior in IE9

I am looking at a third-party javascript that has a global timer. The timer is used to warn the user with a modal alert box when the session is within 5 minutes of expiration, and any mouse-clicks or ...
3
votes
3answers
98 views

Restart / Refresh Javascript Function or Timer

I have the following code on my website.... At the moment, when "Test 1" is clicked the animation starts. After that, when "Test 2" or "Test 3" is clicked the animation does not restart... How would ...
1
vote
1answer
51 views

jQuery/Javascript - “is not a function error” but the function is defined

Hi i have this piece of my code: <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(function(){ ...
0
votes
2answers
56 views

Start & Stop Javascript function by timer

I have the following code on my website.... First, How would I start the animation / function by clicking a link ? Then, How would I "freeze" the last frame in the animation ? (Possibly by a timer ...
0
votes
1answer
40 views

Does CoffeeScript have a class destructor?

When a CoffeeScript class is instantiated a constructor called. This works. However, now I would like to delete a instantiaed object. Is there any destructor to call? (I would like to clear a ...
1
vote
4answers
33 views

Get function associated with setTimeout or setInterval

Let's assume that I have the timeout ID returned from setTimeout or setInterval. Can I get, in some way, the original function or code, associated with it? Something like this: var timer_id = ...
0
votes
1answer
74 views

Run function for 30 min

Here's what I want to do. Execute a function : once, at some time of the day. The function run for 30 minutes. I've tried setTimeout but it doesn't fit my requirement because it run the function ...
0
votes
2answers
68 views

Java script count up timer

I have a working count down timer in java script and it count down from 120 seconds to 0, now I want to change it to becomes a COUNT UP timer, try few thing still not work. could anyone help to ...
1
vote
0answers
26 views

Prevent Chrome Timers on Hidden Tabs Running at 1 Second Resolution

I read that timers on hidden tabs run with a resolution of 1 second. Thats realy a defect for me. With WebRTC browsers can build up a p2p network. For my application one of the peers functions as a ...
-2
votes
1answer
23 views

JavaScript - Timer - Speeding math glitch [duplicate]

var time_gone = 0 function timer() { time_gone += 0.01 console.clear() console.log(time_gone) setTimeout("timer()", 10) } timer() Try using this ...
0
votes
1answer
52 views

JS Wait till page Loads, Unless 5 seconds have passed then start timer (alter current .js)

The below code is a timer for my site's ads. The way its setup now it waits for the page to load fully before starting the timer. What I would like to do is to Alter this slightly to only wait 5 ...
0
votes
1answer
20 views

setInterval for individual functions

Trying to test level ups in a game. The idea is after a certain period of time a function gets called, however I don't want it to be called every (n) seconds I just want it called once: ...
0
votes
1answer
17 views

creating a function blocker within a set period of time

I am working on a custom script for a room I run on plug.dj, and I have implemented auto message alerts for AFK, working and sleeping. So if you have your status set to AFK and somebody mentions you, ...
0
votes
1answer
23 views

change “speed” for few seconds

So I have an object that moves with "speed" now I set the code that when the object collides with another object the speed of the object decreases. I tried doing so by making the speed change and when ...
5
votes
1answer
61 views

JavaScript, jQuery and 'this' : what's going on here?

This is more a question about what's going on in my code. It works, but I need a little bit enlightenment... I'm using jQuery to create an event listener on an text input element. The HTML would ...
0
votes
1answer
39 views

Trying to fix a Javascript Countdown. I have no idea what I'm doing

HELP ME STACKOVERFLOW KENOBI, YOU'RE MY ONLY HOPE. So last week I asked this question: I need to make a timer that counts down to 4:30pm. So far, I can get it to either 4pm or 5pm, but not any ...
0
votes
1answer
54 views

System clock timer with Javascript

I'm trying to use the system clock to make a simple animation in Javascript. I want to cycle through an array so that [0],[1],[2]... are called at 500ms intervals. Using an example from a previous ...
0
votes
2answers
63 views

How to pause and resume a javascript timer [duplicate]

I have this timer which works fine, but i need to be able to pause and resume it after that. i would appreciate it if someone could help me. <html> <head> <script> function ...
2
votes
4answers
45 views

How to stop a JavaScript timer at 0:0

I have this code for a timer, i am trying to get it to stop at 0:0 but it keeps going into negative numbers. any ideas to fix this would be a help. <html> <head> <script> ...
0
votes
0answers
52 views

JavaScript ProgressBar and Timers

I have a progress bar that goes from 0 to 100% on the click of a button and then once it is at 100% once the button is clicked again it should go back to 0%. I have the first part of the problem ...
0
votes
2answers
35 views

Working with a timer and progress bar in JS

I am trying to create a simple script the user clicks a button and a progress bar slowly fills to 100% (I know exciting right?) So I have this snippet set up as my timer: this.updateBar = ...
0
votes
1answer
71 views

Set a Javascript Timer to Half hour

I need to make a timer that counts down to 4:30pm. So far, I can get it to either 4pm or 5pm, but not any minutes in between. I've managed to figure this much out: <script ...
1
vote
2answers
47 views

Make timer stop when user click on play on video

I have a video on another video. Now it works like, the first video closes after 20 seconds and user will be send to the secound video, but I want that when user clicks the play on the first video, ...
1
vote
2answers
133 views

Gmail like countdown timer not working

I've been trying to recreate a countdown timer similar to the one gmail uses that when you get disconnected from internet and the ajax request fail then it begin a short countdown then make another ...
0
votes
1answer
39 views

How to make counter two digit even if below 10 on timer

I have as simple timer as below, but how do I make it show two digits when it falls below 10, for 09, 08, 07, 06 etc.? startTimer(60); function startTimer(num){ count = num; countdown = ...
0
votes
1answer
70 views

Delay or display animated photo timer before capturing photo using JavaScript

I have created various JavaScript functions to capture photo from the browser. Using the JavaScript functions i can successfully launch camera, capture photos and preview it and then able to upload ...
-3
votes
1answer
72 views

Javascript count up asp.net [closed]

I have been trying to find this solution online, but no luck so far. I need a simple JavaScript code (HH:MM:SS) that count seconds up. I have an asp.net c# web application. I want to run that count on ...
0
votes
3answers
50 views

how to change the the margin value with a count down?

Would anyone be able to help me with this? Here is what I have now http://jsfiddle.net/fergu0516/GAVDA/ var leave = 200; if(leave > 0) { CounterTimer(); ...
0
votes
1answer
103 views

Request Animation Frame Javascript Game Timer

The following works: window.requestAnimFrame = (function(){ return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || ...
0
votes
5answers
87 views

I want to load another HTML page after a specific amount of time [duplicate]

I have one html page "form1.html" which has an animated image. I want to load another page "form2.html" after 5 seconds. How do I do this?
1
vote
1answer
388 views

How to make an image move by clicking on a button with Javascript?

I need to write a javascript code inside an HTML document that has the following behavior: When a button is clicked, an image starts moving (if it is not already moving), one pixel to the left per ...
0
votes
1answer
33 views

jQuery: Dynamic Elements with Timers to fadeOut

I have a basic message system on my site that will queue/append messages into a div that floats at top of page. Each message should fade out after X amount of seconds but if you hover over that ...
1
vote
1answer
95 views

Apply javascript function to every row of a table using the cell value as a parameter?

I have a table (generated from a php array) that shows a users current auctions. One of the columns of this table shows the time remaining in the auction. I am using a jquery countdown plugin ...
0
votes
1answer
367 views

Call c# function when ajax timer (countdown) shows 0

I have big problem in simple task... On asp.net page is Multiview with two views, In first View I have ajax timer, which count seconds from 60 to 0. Time is showing on label, in updatepanel. I would ...
-3
votes
2answers
124 views

One time text timer for Javascript [closed]

i have a question about timer functions in javascript. is there a way to create a simple function that i will call during my game that will last for example only 3 seconds. It will be called only one ...
0
votes
1answer
98 views

JavaScript - Timer Initiation

I'm trying to make my enemy fire every second. Right now - it's every frame. Within my enemy object, I have a piece of code that is initiated when the player is within range: this.shotBullet = ...
1
vote
1answer
320 views

PHP Countdown Timer

Is it possible to create a timer using PHP so that after 60 seconds it does something. So it actually shows you a countdown from 60 to 0. I would refresh the div so it actually looks like it's ...
1
vote
1answer
49 views

Get buttons (prev, next, pause) working for Deck.js

I am trying to use Deck.js but have a massive issue that is making me feel very very stupid. I want to have navigation buttons. I want a button that allows the user to move forward and a button that ...
1
vote
2answers
78 views

clearTimeout() inside setTimeout() method not working in JS

clearTimeout() inside setTimeout() method not working in JavaScript var c = 0; var t; function timedCount() { document.getElementById('txt').value = c; c = c + 1; if (c == 5) { ...
1
vote
2answers
143 views

How to create an advanced countdown timer in JavaScript?

I'm somewhat new to JavaScript but I do have some basic understanding. I want to create a countdown timer that will accept a date and a time, but I am unsure how or where to start. I want the ...
0
votes
1answer
42 views

Execute onload $(function () {} inside a timer, and pass parameter to it

I have a onload function in jquery like: $(function () { $('.over').hover(function () { //FIRST PARAMETER RIGT, LEFT, TOP, BOTTOM if ($(this).attr('data-direction') == ...
0
votes
0answers
39 views

mutiple timers at the same time in javascript

Here is where my timer is called renewRecompenses: function() { var timer = new Timer.Views.Layout(); var self = this; var t = timer.getWorkingTimers(myPlayerId, function (resp){ ...

1 2 3 4 5 10