I have a web page that has an asp:ListView and I am trying to figure out how to programmatically scroll to a certain item. Here is my aspx markup:\[code\]<asp:ListView ID="lvGlossary" runat="server" DataSourceID="SqlDataSource1" OnItemDataBound="lvGlossary_ItemDataBound"> <LayoutTemplate> <div class="glossaryTitle">Glossary</div> <div id="ItemPlaceholder" runat="server"></div> <br /> </LayoutTemplate> <ItemTemplate> <div class="glossaryEntry"> <span class="glossaryWord"> <asp:Label ID="lbWord" runat="server" Text='<%# Bind("Word") %>' />: </span> <span class="glossaryDefinition"> <asp:Label ID="lbDefinition" runat="server" Text='<%# Bind("Definition") %>' /> </span> <br /> </div> </ItemTemplate> <AlternatingItemTemplate> <div class="glossaryEntryAlternating"> <span class="glossaryWord"> <asp:Label ID="lbWord" runat="server" Text='<%# Bind("Word") %>' />: </span> <span class="glossaryDefinition"> <asp:Label ID="lbDefinition" runat="server" Text='<%# Bind("Definition") %>' /> </span> <br /> </div> </AlternatingItemTemplate></asp:ListView>\[/code\]In my c# code behind I am populating a text box with text and when the user selects a word I want to automatically scroll to the word in the listview so it is visible. It most likely needs to be done client side, so I think I need some javascript to do this. Can anyone point me to an example of how to do this?Any help is appreciated!!Thank you