I have a div with disabled items. I am using jquery ui to display tool tip. Tool tip is shown for enabled items but not for disabled div. How can I show tooltip for disabled div also? Here is my fiddle
<div title="This is a tool tip test for enabled item" id="divEnabled">
item is enabled
</div>
<div title="This is a tool tip test for disabled item" id="divDisabled">
item is disabled
</div>
#divDisabled{
opacity: 0.2;
pointer-events: none;
}