I have some lists in my page which are the same
<ul class="tabItem">
<li class="active">
<hr>
<a href="#tab-1">tab1</a>
<hr>
</li>
<li>
<hr>
<a href="#tab-2">tab2</a>
<hr>
</li>
...
</ul>
How can I add css to all <ul>tags with .tabItem class at the whole page using jQuery?
Currently I'm doing this, which works only on the first <li> childs
$(".tabItem li").children('hr').eq(0).css({"transform": "translateY(-12px)"});
$(".tabItem li").children('hr').eq(1).css({"transform": "translateY(12px)"});
<li>in.tabItem?.tabItem li:hoverto add effects. And I need this to add to allhrs in the all<li>tags