The list of radio cleansers and the repeater are in the updated panel. The repeater uses the jQuery tools plugin - scrollable.
The scrollable plugin works after the page loads. This happens after I press the switch.
I put the enter button to run the script below after the partial postback, and the scrollable functionality works after I click on it, so I assume that after clicking / the partial postback of the radio button below javascript is needed, the scrollable is not executed.
A scrollable plugin requires this:
<script type="text/javascript"> $(function() { $("div.scrollable").scrollable({ size: 3 }); }); </script>
How do I start this after clicking the radio? Or is there an alternative way to run this script after a partial postback? I do not want to make a complete answer to fix this problem.
Thanks in advance.
source share