Using jQuery for a list item click event, is it possible to highlight the selected item somehow?
$('#listReports').delegate('li', 'click', function () {
var filename = $(this).text();
// Any highlight methods or css tricks that I can add/remove for each click
});
You can use
addClassandremoveClassmethods: