Disable tooltips using css

后端 未结 10 1183
隐瞒了意图╮
隐瞒了意图╮ 2021-02-12 15:33

Is there a way to disable the tooltips of the tag in css?

10条回答
  •  温柔的废话
    2021-02-12 16:00

    $(.classname).attr("title","");
    

    using attribute will search the title and replaces with ""(empty). Try this and tool tip will not be show when you hover.

提交回复
热议问题