up vote 0 down vote favorite
share [g+] share [fb]

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.

link|improve this question

1  
this sort of thing saddens me immensely - damn you jquery shakes fist – annakata May 27 '09 at 8:21
feedback

2 Answers

up vote 9 down vote accepted

jQuery is javascript - it's a js library. Just call the function, e.g. $(this).slide(); in the function.

link|improve this answer
feedback

You can call the jQuery functions inside the function you showed above. Of course, you have to import the jQuery library before you can do that.

Example:

function OnResponseEnd(ajaxPanel, eventArgs) {
    $('div').slide(...);
};
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.