setInterval is a global JavaScript method. It is used to execute a particular function or piece of code at regular intervals.

learn more… | top users | synonyms

1
vote
1answer
32 views

Javascript unable to stop timer onclick with clearInterval

I am trying to create a stopwatch on my site where I can count the time since the button was clicked. I then want to be able to stop the timer by clicking another button and store the elapsed time in ...
-2
votes
1answer
40 views

JavaScript: How do setInterval and setTimeout actually work?

The code goes like: window.onload = initAll; function initAll(){ var start = new Date(); window.setInterval( function(){ var present = new Date(); elapsed = present - start; ...
0
votes
0answers
46 views

Issue with setInterval and trigger. javascript jquery

What I am trying to do is create a nav that has a drop down menu button, but only when the viewport width is less than 600px. The code I am using works, but I would like the drop down menu to stay ...
0
votes
1answer
23 views

Ajax timed update issue

Simply I have a menu bar with an animated notification badge made by CSS and implemented by SPAN class on the HTML. this badge should show the count of new messages and disappear if that count is 0. I ...
0
votes
3answers
35 views

setInterval variable not accessable

var cnt1 = 0; function initOctoView(){ var newcnt1 = printAdsBox1(cnt1, imgPerBox1); // first time on first load var totalBoxes8 = setInterval(function() { newcnt1 = printAdsBox1(newcnt1, ...
0
votes
3answers
34 views

How to change button text to Wait, check for content change then reset button text with jQuery

I have only recently started using jQuery so any additional guidance would always be appreciated. I’m trying to add some nice UI features to my site, specifically to change a clicked button text to ...
0
votes
3answers
24 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 ...
0
votes
1answer
30 views

Can clearInterval() be called inside setInterval()?

bigloop=setInterval(function () { var checked = $('#status_table tr [id^="monitor_"]:checked'); if (checked.index()===-1 ||checked.length===0 || ){ ...
3
votes
4answers
49 views

Ampersand Symbol (&) turning into &

I use the following code to automatically grab/set the latest page title every 30 seconds: <script type="text/javascript"> setInterval(function() { var data = ...
0
votes
0answers
23 views

setInterval running slow on Safari

I'm working on an HTML5 canvas-based game, and have hit a bit of a problem in Safari (on Windows). The game runs nicely in Firefox and Chrome, and even IE, but on Safari everything moves really ...
0
votes
0answers
30 views

setInterval in slide show

there are many free slide show and plugins in the internet. I want to design my slide show with pure javascript without any framework or plugins. I want a simple slide show that will be light weight ...
0
votes
1answer
30 views

setInterval() speeds up when using multiple from object method

I have been having problems with my setIntervals(). I know these issues appear a lot but I can't seem to work out what the exact problem with my implementation is. Every time I instantiate a new ...
0
votes
3answers
21 views

stopping dynamically generated setInterval

I am generating multiple charts each with their own setInterval to refresh the data. I have it set to clearInterval when the dynamically generated container is removed - but if I reload and it has ...
0
votes
0answers
18 views

Timed interval call to jQuery .get stops working

I have a set of JavaScript functions that are used to to get stock quotes from yahoo. Var intervalHandle is defined at the top of the JavaScript file as a global variable. The jQuery ready function ...
0
votes
1answer
27 views

jquery check every 2 minutes if there was a click or mousemove event

I need to refresh a page after 10 minutes of inactivity. What I mean by inactivity : no mouse move and/or no clicks on the body Here's what I have so far (that piece of code is working fine) ...
0
votes
1answer
37 views

javascript window interval is not changing

I have two updated panels on my web page to display some data and i am refreshing panels after a specific time like this <script language="javascript" type="text/javascript"> ...
0
votes
0answers
27 views

White frames between div auto-refresh (only Chrome e IE)

After reading several interesting posts on this site, regarding the auto-refresh of a div containing an image, it works correctly. Why do I get an empty div between one refresh and another? (in ...
0
votes
2answers
35 views

setInterval cannot be used into other functions

After solving a problem about how to display data of an array each XXX seconds with setIterval funcion with the code: var iterations = 0, data = ['a','bbbbbbbb','c'], interval = ...
0
votes
0answers
23 views

Jquery setInterval stops in separate tab

I need my setInterval function to work even when the browser tab with current script is not active. You can see my example here http://jsfiddle.net/4MWqV/. var balance=100000000; ...
1
vote
3answers
33 views

Stop jQuery setInterval

I want to stop this interval on the error: function(){ from running repeatedly, how is that possible: $(document).on('ready',function(){ setInterval(updateDiv,3000); }); function ...
0
votes
1answer
38 views

Jquery, how to keep a div active even using setInterval?

I am working on a comments system and I have made it nice with jquery, I have a problem. I made it fetch the DB stuff every 2000 miliseconds (2 seconds). And here is the problem, when a user clicks ...
0
votes
1answer
36 views

setInterval / setTimeout issue in iOS

I builded a basic avoider game. When I run the game in iOS, I'm having a problem with setInterval or setTimeout (i've tried both). Strange thing is that it works fine as a .swf, or an .apk, but not in ...
0
votes
1answer
29 views

setInterval cannot clear with mouseup

I am using mousedown and mouseup to trigger a setInterval function like so: $("#rotateRight").mousedown(function() { intervalIRight = setInterval(rotateRight, 0); }).mouseup(function() { ...
0
votes
0answers
26 views

How i can i change the setInterval period and how to clear it?

I have a table of items that i would like to loop through to monitor their status. See my Fiddle here: http://jsfiddle.net/USv4j/1/ I use setTimeout to give each entry a delay. Then I use ...
0
votes
1answer
38 views

Toggling setInterval animation on/off

New to js and learning a lot but in all my research I can't get this quite right. Goal: 1: I have image1 2: when clicked on runs a setinterval function between image2 and image3, animating it. 3: ...
1
vote
2answers
50 views

how to stop setInterval() on slidetoggle() then restart again?

I have looked at all the other answers similiar to this question but i can't make them fit my scenario. i have a page that has a sidebar that contains 15 results that auto refreshes, which is fine. ...
-1
votes
2answers
51 views

How do I get setInterval to work with an array in javascript/jquery?

I want to run a function inside of a setInterval and change a variable for that function each time the setInterval runs, here is what I have so far: $pages = new Array(); ...
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
43 views

JavaScript Windows 8 app setInterval() issue

Basically I have this code in MS Visual studio 2012 for a windows 8 JavaScript+jQuery app. <script> window.setInterval(function () { var currentx = $(".ball").css("left"); ...
0
votes
2answers
37 views

How many times on earth does setTimeout execute?

I know this may be an old question. But I'm really confused after a few googling. From this question, I learn the setTimeout will execute forever, but from this one, I learn it will execute only ...
0
votes
2answers
60 views

Start setInterval on mouseenter // reset on mousleave // stopping setInterval after 1 second

I'm rather new to javascript and hit a wall with the follwing problem. I am trying to decrease a variable from 1000 to 0 while hovering over an element. The variable should also reset to 1000 if the ...
2
votes
2answers
50 views

Javascript clearInterval() not able to clear the interval

get_user_record() this function call the method which is pulling data in database. I used time-out because I don’t want response from this method, showUpdatedProgressBar() method which is continuously ...
0
votes
0answers
80 views

Should I use window.webkitRequestAnimationFrame instead of setInterval?

I am developing a game in JavaScript and I am confused on which one I should use - window.webkitRequestAnimationFrame or setInterval for moving my game characters.
1
vote
1answer
37 views

Can't cancel repeat timer in GWT

I am trying to schedule a repeating timer in GWT, it will run every one milli second, poll for a certain event, if it is found satisfactory, do something and cancel the timer. I tried doing this: ...
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
0answers
9 views

Create a ClearInterval for Slider

Can someone tell me how I would add a clearInterval action in this slider I wrote. I am trying get it so that when the slider changes to a new slide it resets the timer. var sliders = ...
0
votes
2answers
42 views

What's the easiest / most efficient way to pause setInterval while data is loading? JavaScript/Jquery

So i have a JS Interval doing a load command on a script.. and displays the loaded data on a div.. Everything was perfect until i put my project online and saw an issue (in the background).. Since ...
0
votes
0answers
38 views

want JS sliding door animation on a div periodically in addition to the animation only during hover

Hello to anyone viewing this, I am following this tutorial to apply sliding door javascript effects: Here is the demo: The html, css and javascript is all there in the first link, but for the sake ...
1
vote
1answer
67 views

setInterval and Ajax issues

I am running an ajax call every 10 minutes with setinterval. That call is getting new post data from a php page and throwing it into a variable. When I want to load that new post data, I would click ...
0
votes
2answers
32 views

JavaScript setTimeout setInterval

I am writing some code for a website and I want to create a 165px x 2px line that shows up and then disappears and continues to do that to infinity. I have wrote this code in JavaScript: function ...
0
votes
1answer
31 views

Javascript - Clearing the interval and setinterval scope

I have some AJAX that shows a progress bar using setInterval() to get the scripts current progress. My problem is that I cannot seem to kill it when progress has reached 100%. I am not sure if this ...
0
votes
2answers
25 views

jQuery animation timings for non CSS

I'd like to count from 0 to n in x seconds and call a function on each step. For instance: var count = 0, targetCount = 100, duration = 500, timing, interval; timing = duration / ...
0
votes
1answer
33 views

Trouble Using setInterval function

I'm having some trouble getting the below to work. I'm trying to run this asynchronous function called Chat.fetch and I can get the messages it returns to display correctly. When I try to pass it ...
0
votes
2answers
69 views

Alert function - javascrip as wait function

my application is aps.net MVC, is I loading several images using ajax, by getting the mouse Y position, it works but if I move the mouse more than one pixel for example 100 it load all images at once! ...
0
votes
0answers
36 views

jquery Trying to append the first object on a loop

I'm trying to write an infinite slider but for some reason the slider will only take the first item from the list and then never re-set the firstli variable with the next 'first' item. I can't see ...
0
votes
1answer
37 views

AS3 Error 1009 - Where am i going wrong?

This is the error I'm getting: TypeError: Error #1009: Cannot access a property or method of a null object reference. at ICA_v7_fla::MainTimeline/addEgg() at ...
0
votes
1answer
58 views

SetTimeout inside emberjs model

I have in my emberjs application a model that doesn't has any database data. I have create this model because i want some object that pools some requests from the server but is not binded to a ...
0
votes
1answer
193 views

JqueryMobile : Display Loading Animation Spinner while Loading Page

I want to show loading animation spinner in a JQueryMobile page which is loaded w/ ajax off. The page is loaded with data-ajax="false" or rel="external" I tried on pagebeforecreate and pageshow ...
0
votes
1answer
94 views

PHP code only runs once inside javascript setInterval

I'm just learning PHP and Javascript in a JC class. I have the following for a school project. The following setInterval() runs every 3 seconds, however the embedded PHP code only runs the first ...
0
votes
1answer
26 views

jQuery How to properly set an interval?

At the moment I have this, but it keeps returning "swapBKgnd is no defined" : var interval = self.setInterval("swapBKgnd()", 9000); function swapBKgnd() { (direction === 'next') ? ...

1 2 3 4 5 18