I have a description of animals in a list
<ul class="1">
<li class="liHEADER">ANIMALS</li>
<li class="animalss">LION</li>
<li class="animalss">TIGER</li>
<li class="animalss">CHEETAH</li>
</ul>
Additionally, I have specific <div>
elements for each animal's picture and label
<div class="show">
<div class="pic"><img src="LION.jpg"></pic>
<div class="labels">LION</div>
<div class="pic"><img src="TIGER.jpg"></pic>
<div class="labels">TIGER</div>
<div class="pic"><img src="CHEETAH.jpg"></pic>
<div class="labels">CHEETAH</div>
</div>
I am looking to implement functionality where clicking on an animal name shows the corresponding image and label. Is there a way to achieve this using JavaScript or jQuery?
I appreciate any help as I am not very experienced with this.