I have menu list that items change color while I'm hovering over it. I also have picture over which I would like to hover and the elements from the list would highlight(as I would hover directly over them).
I don't know how to trigger it by JS - I thought about simulating hovering over the exact item from the list.
Here are the codes:
CSS class
#przyciski a:hover
{
color:orange;
text-decoration:none;
cursor: hand;
}
HTML Code:
<img src="img/kwadrat.jpg"
onCLick=""
onmouseover="someFunction('itemFromTheList')"/>
If somebody could share some idea I would be thankful.