Show tooltip for disabled items

后端 未结 3 618
我寻月下人不归
我寻月下人不归 2021-01-21 22:25

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

相关标签:
3条回答
  • 2021-01-21 22:44

    I tried this and it worked

    Worked code

    $("#divDisabled *").attr("disabled", "disabled").off('click');
    
    0 讨论(0)
  • 2021-01-21 22:50

    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

    <div title="This is a tool tip test for disabled item" id="divDisabled" onclick="return false;">
        item is disabled
    </div>
    

    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.

    0 讨论(0)
  • 2021-01-21 22:50

    Remove the pointer-events: none; to make it work.

    0 讨论(0)
提交回复
热议问题