I\'m trying to create a function that starts when you click on a specific link in a listview. The issue is that event doesn\'t seem to fire when you click the link. The lis
Something like this:
$(function() { $("#listviewForLastTenCalls li").on('click', function() { alert('clicked'); }); });