I have a <ul> like the one below;
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
Next to that I have a DIV containing another list with images. As below;
<ul>
<li><img src="example1.png" alt="" /></li>
<li><img src="example2.png" alt="" /></li>
<li><img src="example3.png" alt="" /></li>
<li><img src="example4.png" alt="" /></li>
</ul>
Technically what I am trying to do is that when I hover an <li> of the first list, that it displays the correct <li> from the second list.
My guess was to count the amount of <li>'s and get the number of the currently hovered one. Then do the same with the second <ul> and display the <li> with the same number.
Is that possible?