I am searching for a solution to indicate when a div is being toggled, using a separate div with the class of ".bars".
Experimented with if statements and modifying classes on the indicator div ".bars" to adjust its characteristics...
The ".bars" indicator consists of three child divs, each corresponding to a toggled div in a slideshow...
if($(".one")).show(){
$(".bars div").css(update properties here);
}
//The issue I'm facing is that I can modify other HTML elements this way such as the parent div ".bar" but struggling to change its children...
<div class="bars">
<div></div>
<div></div>
<div></div>
</div>
Check out my CodePen link to see where I am encountering challenges http://codepen.io/gebrutommy/pen/ZpGZRv?editors=0010