ajax 콜을 여러번 시리얼하게 요청 하고자 한다면... 아래의 async waterfall 을 사용하길 추천 합니다... Project : https://github.com/caolan/async Guide: http://hatemogi.com/holiday-project-day-10/waterfall(tasks, [callback])Runs the tasks array of functions in series, each passing their results to the next in the array. However, if any of the tasks pass an error to their own callback, the next function is not executed, and the ma..