- Most Screen readers read the custom tooltip information by default. role="tooltip" does not seem to do anything additional, like it doesnt inform user that its tooltip. Why do we need to use role="tooltip" for the tooltip container? Any specific purpose?
- Tooltip information not read by NVDA in IE11. Any hacks to fix?
Here's my code:
<div class="ttipcontainer">
<button title="" class="co_tooltipElement" id="newButton05-2" aria-describedby="coid_accessibleTooltip_1"> Recent Searches </button>
<span tabindex="-1" class="co_accessibilityLabel" id="coid_accessibleTooltip_1" aria-hidden="true" role="tooltip">Shows information of your recent searches</span>
</div>