views:

7

answers:

0

I am using a listview to display some items and its owner name. All owners name are links and they are having same class and same id(since in listview). But I am displaying some information through an ajax call on mouse hovering the link. The ajax call retrieves data from database. But problem is that since I am using their css class as jquery selector on mouse hovering one link it makes ajax call for all the links(since class is same for all). I mean if 10 nos of items present in the list view it makes 10 ajax call but it should make one ajax call only for that item. So can anyone help me how I will be able to differentiate the ajax call for different links.