I have been working with jQuery UI tabs and I am encountering an issue. The app is correctly applying the CSS class .ui-state-disabled, which should prevent clicking on the link. However, the cursor does not change to default as intended. Despite trying different approaches, I have been unable to resolve this.
Below is the CSS code I have tried:
.ui-state-disabled:hover {
cursor: default;
}
Here is the HTML code for the element in question:
<li class="ui-state-default ui-corner-top ui-state-disabled">
<a href="#Procedures" title="Procedures">
<div>Procedures</div>
</a>
</li>
If anyone has any suggestions on how to fix this issue, I would greatly appreciate it. It's important that users do not mistake the element for being clickable in its disabled state. Thank you for any assistance you can provide.