i have some code that works perfect for my hover states. However, if the link is already active, i.e ArrowHover is already attached to the div when i hover over it obviously it removes ArrowHover due to the toggleclass in the jquery. How can i make sure this doesn’t happen on links already active?
$("#JobApplications").hover(function()
{
$("#JobApplicationsArrow.Arrow").toggleClass('ArrowHover')
}
)
Fixed it using css techniques instead of jQuery. Cheers anyways Adam!