If I know the DisplayIndex of the ListView item I want to find, how can I find it in javascript?
As a reference, here is how I can do it if I know the index of the item in a GridView:
// get the gridview element
var gridView = $get('<%= this.GridView1.ClientID %>');
//Get the selected row
var curSelRow = gridView.rows[parseInt(rowIdx)+1];