I have two javascript functions
function one () {
do something long... like writing jpgfile on disk
}
function two () {
do something fast... like show the file
}
I call it (in jQuery) like that
one ();
two ();
Because function two need the link file from function one, i need to be sure the execution is completed... so getting the function two in the callback of function one should be the trick.. but how to do that ?
note : i did put an alert ('aaa') between those two function to let function one complet, and it work fine... when the alert is commented (removed) nothing work anymore !