HTML
<div contenteditable="true">
<span class="optional">Optional</span>
</div>
CSS
.optional {
cursor: pointer;
}
When I hover over the optional class span in IE, it does not change the cursor from text type to pointer type. When I hover over the optional class span in Chrome, it does work.
Is there a workaround for this in IE?