Simple nested setTimeout() only runs once (JavaScript)
Posted
by
danielfaraday
on Stack Overflow
See other posts from Stack Overflow
or by danielfaraday
Published on 2012-04-06T17:09:26Z
Indexed on
2012/04/06
17:29 UTC
Read the original article
Hit count: 143
For some reason my galleryScroll() function only runs once, even though the function calls itself using setTimeout(). I'm thinking the issue may be related to scope, but I'm not sure:
$(document).ready(function() {
var x = $('#box').offset().left;
var y = $('#box').offset().top;
galleryScroll();
function galleryScroll() {
x = x + 1;
y = y + 1;
$('#box').offset({
left: x,
top: y
});
setTimeout('galleryScroll()', 100);
}
});?
The HTML:
<html>
<head>
</head>
<body>
<div id="box">
</div>
</body>
</html>?
© Stack Overflow or respective owner