how i get selected class of li in jquery

Solutions on MaxInterview for how i get selected class of li in jquery by the best coders in the world

showing results for - "how i get selected class of li in jquery"
Thiago
14 Mar 2018
1<ul id="attached_deals_tab">
2    <li class="active"></li>
3    <li></li>
4    <li>
5        <ul>
6            <li class="active"></li>
7            <li></li>
8        </ul>
9    </li>
10</ul>
11
12<!--jquery code-->
13$('#attached_deals_tab li.active');
14
15
similar questions
queries leading to this page
how i get selected class of li in jquery