I'm using RadAjaxPanel by telerik and it has ClientEvents-OnResponseEnd client-side event. So I've written JavaScript function:
function OnResponseEnd(ajaxPanel, eventArgs) {
// call jQuery here
};
and my question is how to call jQuery function inside? I'd like to manipulate some html elements with .slide(..) function.