jQuery resize() using browser maximise button

前端 未结 7 1513
礼貌的吻别
礼貌的吻别 2021-02-07 11:29

This is my code that fires whenever the window is resized:

$(window).resize(function()
{   
    setDisplayBoardSize();
});

Fires fine when I re

7条回答
  •  野性不改
    2021-02-07 11:54

    some browsers like ie and opera trigger this event with some limitations, this plugin can solve the issue:

    http://benalman.com/projects/jquery-resize-plugin/

提交回复
热议问题