vote up 0 vote down star

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.

flag

75% accept rate
1  
this sort of thing saddens me immensely - damn you jquery shakes fist – annakata May 27 at 8:21

2 Answers

vote up 5 vote down check

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

link|flag
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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