A radiobutton list and a repeater are in an updatepanel. The repeater is using a jQuery tools plugin - scrollable.
The scrollable plugin works after the initial page load. It does not after I click on a radio button.
I put in an input button to run the script below after a partial postback and the scrollable functionality works after I click it, so I'm guessing after the radio button click/partial postback, the javascript below that is needed by scrollable isn't being run.
The scrollable plugin requires this:
<script type="text/javascript">
$(function() {
$("div.scrollable").scrollable({
size: 3
});
});
</script>
How do I run this after the radiobutton click? Or is there an alternate way to get this script to run after a partial postback? I don't want to do a full postback to remedy the problem.
Thanks in advance.