我正在尝试使用jquery 1.10.2 上的 jquery resize 插件( http://benalman.com/projects/jquery-resize-plugin/ )检测元素调整大小。
$("#element").resize(function(){
console.log("resize");
});
我在 Firefox 25 上进行了测试,我得到了这个错误:
Error: TypeError: r is undefined
Source File: jquery.ba-resize.min.js
Line: 9
我该如何解决?有没有其他方法/插件可以做到这一点?
谢谢你。