2
I’m listing the icons from a list on console.log() they are displayed, however I want to capture only the second classes of icons in a variable, but I don’t know how to access with jQuery the second classes of the tag <i>.
I’m using this code to access the tags <i> who are on the list <li>
clickAtual = $('li.card').children().find('i');
Below the list is displayed, however I want to access the second class of this list as shown below.

I tried here but the console continues to print all the classes. I looked at jQuary’s Document '.eq()'.
– Wemerson Nino