Skip to content
Advertisement

Hover, removeclass First Element and add other Element

I am trying to create a function that always the first Element receives a class = “actived”

this class has a css style that marks the element in question

I have a list of 4 lines and in them I want the first to receive this class by default and the other 3 when I hover receive this class = “actived”

at the same time remove the class from the first element, as soon as I remove the mouse from the top the first element returns to receive class = “actived” by default

This image shows the first element with class = “actived” getting by defaul This image shows when I hover over other lists, removing the class from the first element

JavaScript
JavaScript
JavaScript

Advertisement

Answer

You are just making your hover function too complicated.

If you want the last hovered element to stay active when it is no longer hovered over, you don’t need anything to happen on the mouseout event – you can remove the second function from the hover handler for that event.

To leave the highlight on the last hovered element:

On the hover event: remove the actived class from all elements it might be on (no need to check which first because it doesn’t matter!) add it to the currently hovered element

JavaScript

To leave no element highlighted on mouseout:

As above, and add $(".news-list li").removeClass('actived') to the mouseout function to remove it from all elements:

JavaScript

To return the highlight to the first element on mouseout:

As above, except om mouseout, add the actived class back to the first element:

JavaScript

Working Example:

JavaScript
JavaScript
JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement