I need to select the class of the element in this list item using jquery
The list item is here:-
<li><a href="#" title="general news"><i class="icon-rss"></i> news</a></li>
I have tried this but no joy, it says undefined:-
$(".btn-group li").click(function () {
var className = $(this).children("i").attr('class');
alert(className);
});
1 Answer