In javascript, is there any different between these two:
// call MyFunction normal way MyFunction(); // call MyFunction with setTimeout to 0 // window.se
I would guess that the timeout only starts when the page is fully loaded, whereas just a plain 'MyFunction()' will execute as soon as it's processed.