I have the select code :
<script type="text/javascript"
src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.4.min.js">
</script>
<script type="text/javascript"
src="http://plugins.learningjquery.com/expander/jquery.expander.js">
</script>
<script type="text/javascript" >
$(function () {
$('div.readmore').expander({
slicePoint: 200,
expandText: 'Click Here to Read More',
userCollapseText: 'Hide Text'
});
});
</script>
<asp:GridView ID="GV_Advices" runat="server" AutoGenerateColumns="False"
BorderColor="White" BorderStyle="None" ShowHeader="False" Width="890px"
AllowPaging="True" OnPageIndexChanging="GV_Advices_PageIndexChanging"
PageSize="6">
...
<div class="readmore" runat="server"><%# Eval("Body")%></div>
....
When I run the code everything is working, I mean EXPANDER is working, but when I change the page, Expander does'nt work.
Can anybody help?