Is there a way to detect when one of the plugins successfully completes ajax call using $.ajax.
I am using a treeview plugin that calls asp.net webservice, and I want to attach context menu to the branches/leafs once they’ve been loaded.
Is there a way to detect when one of the plugins successfully completes ajax
Share
Have you looked into
$.ajaxComplete();,$.ajaxSuccess();, or the callback functions within the requests themselves:Take a look at the other Global Ajax Event Handlers.