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
You are setting pointer events to none so the hover event is not fired. Thats why title is not shown. Maybe you should find another way to "disable" the div.
If you just want to stop click event on the div
item is disabled
would do.
But normally it is useless to click on a div so maybe you would explain what are you doing on click of the div and preventing this action would be different.