delayed function

admin

Administrator
Staff member
How can I load a function after a given amount of time from another function, after the first function loads.



function loadme()
{
This should be completed first

do something here

then load function loadlater (setTimeout or something)
}

function loadlater()
{
This should be completed last.
}
 
Back
Top