I'd like to know if anyone has been able to use jQuery to bind to the ajaxComplete event in the browser when using radAjax. It seems to simply not work but I could be doing something wrong.
| jQuery(document).ready(function(){ |
| //maybe do some stuff here |
| jQuery(window).bind("ajaxComplete", function() { |
| //this should alert after any ajax request completes. |
| alert("AJAX ROCKS!!"); |
| }); |
| }); |