¡@

Home 

2014/10/16 ¤W¤È 12:05:59

jquery Programming Glossary: one_done

How to confirm when more than one AJAX call has completed?

http://stackoverflow.com/questions/5932432/how-to-confirm-when-more-than-one-ajax-call-has-completed

This is the awesome stuff that you want to execute when both lists have loaded and finished. ... var one_done false function done_checker if one_done The other one is done so we can get on with it. do_something_wonderful one_done.. that you want to execute when both lists have loaded and finished. ... var one_done false function done_checker if one_done The other one is done so we can get on with it. do_something_wonderful one_done true #list1 .jqGrid blah blah blah gridComplete.. false function done_checker if one_done The other one is done so we can get on with it. do_something_wonderful one_done true #list1 .jqGrid blah blah blah gridComplete done_checker #list2 .jqGrid blah blah blah gridComplete done_checker This..