I am currently utilizing a jquery date picker that includes two icons on top (next, previous). However, I've noticed that when I hover over these icons, they disappear.
https://i.sstatic.net/zsCQy.png
Upon further investigation, it appears that when hovering over the icons, two classes are being added to the tag:
Classes - ui-state-hover ui-datepicker-next-hover
What could be causing this issue?
<a class="ui-datepicker-prev ui-corner-all" data-handler="prev" data-event="click" title="Prev">
<span class="ui-icon ui-icon-circle-triangle-w">Prev</span>
</a>
When hovering, the following classes are added to the anchor tag:
ui-state-hover ui-datepicker-prev-hover
Now, my goal is to remove the mentioned classes from the anchor tag upon hover/mouseover
ui-datepicker-prev ui-corner-all ui-state-hover ui-datepicker-prev-hover