I am using repeater control In which i have to fade in the rows present in repeater control on repeater load I wrote the following code which doesn't work. Please help me out.
html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function (e) { e.preventDefault(); $("#lbl").fadeIn('slow'); }); </script> </head> <body> <form id="form1" runat="server"> <div> <asp:Repeater runat="server" ID="repeater1"> <ItemTemplate> <asp:Label runat="server" ID="lbl" Text='<%#Eval("ename") %>'></asp:Label> <br /> </ItemTemplate> </asp:Repeater> <asp:Button ID="Button1" runat="server" Text="Button" /> </div> </form> </body> </html>