jquery를 한 기능이 끝날 때까지 기다렸다가 다른 기능을 실행하려면 어떻게 해야 합니까? function test(){ var distance=null; first(); second(); third(); alert(distance);//it shows null always because it take 2 second to complete. } function first(tolat, tolon, fromlat,fromlon){ // calulating road distance between two points on the map using any other distance caluculating apis. distance=dis; // update the value of distance but it t..