I want to load an OWL file before executing other (visualisation-)scripts. To do this I tried everything from
$(document).ready
to
function visualize (file) {
if (!file)
{setTimeout(visualize(file), 2000)}
else
{jQuery(function($){visFeaturePool.init(file)})}}
I think it has to be possible with the setTimeout but that isn’t working. I throws the error:
Uncaught RangeError: Maximum call stack size exceeded, so it doesn’t wait, it just recalls the visualize function untill the stack is full.
Does anybody know what I am doing wrong?
Thanks!
Instead of
you want
or on modern browsers, you can provide arguments to pass to the function after the delay:
Those three explained:
visualizeimmediately, and then passes its return value intosetTimeout(and sincevisualizecalls itself, it keeps calling itself recursively and you end up with a stack overflow error).setTimeoutthat, when called, will callvisualizeand pass it thefileargument (with its value as it is then). The function we’re passing intosetTimeoutwill have access to thefileargument, even though your code has run and returned, because that function is a closure over the context in which it was created, which includesfile. More: Closures are not complicated Note that thefilevariable’s value is read as of when the timer fires, not when you set it up.visualizefunction reference intosetTimeout(note we don’t have()or(file)after it) and also passesfileintosetTimeout, using its value as of when you set up the call. Later, in modern environments,setTimeoutwill pass that on to the function when calling it later.There’s an important difference between #2 and #3: With #2, if
fileis changed between whensetTimeoutis called and the timer expires,visualizewill seefile‘s new value. With #3, though, it won’t. Both have their uses. Here’s an example of that difference:If you needed #3’s behavior of immediately reading
file(rather than waiting until the timer fires) in an environment that didn’t support extra arguments tosetTimeout, you could do this: