jQuery: How to remove the tipsy tooltip?

前端 未结 9 1779
盖世英雄少女心
盖世英雄少女心 2021-01-08 01:17

I add the tipsy tooltip to divs with the .placeTaken class. The user can then drag boxes around, so I remove the class and add it to a new div instead. When this happens, I

相关标签:
9条回答
  • 2021-01-08 02:07

    Use: .unbind('mouseenter mouseleave'); to remove a tipsy method.

    0 讨论(0)
  • 2021-01-08 02:09

    The simplest way to remove tipsy ;

    $('.tipsy:last').remove();
    
    0 讨论(0)
  • 2021-01-08 02:09
    $("#tipsyfiedElement").unbind('mouseenter mouseleave'); // Or whatever event trigger the tiptool
    
    0 讨论(0)
提交回复
热议问题