tipsy live does not work with jQuery 1.9.0

前端 未结 2 961
無奈伤痛
無奈伤痛 2021-02-12 13:44

We recently upgraded our jQuery to 1.9.0, but it broke our tipsy plugin. Its live functionality now causes an error.

$(\'.tooltip, abbr\').tipsy({
          


        
2条回答
  •  广开言路
    2021-02-12 14:10

    The problem is that this plugin still use .live() to let work the method live you used there, it is deprecated and has been replaced with .on().

    You should try to search for updated version of the plugin or try to replace it by yourself.

提交回复
热议问题