jQuery UI resizable fire window resize event

后端 未结 5 669
庸人自扰
庸人自扰 2020-12-14 07:41

I have 2 events, one to detect window resize and other to detect the resizable stop of div.

But when I resize the div, in the console detect the window resize event.

5条回答
  •  一向
    一向 (楼主)
    2020-12-14 08:08

    $(window).resize(function(e) {
      if (e.target == window)
        /* do your stuff here */;
    });
    

    http://bugs.jqueryui.com/ticket/7514

提交回复
热议问题