automatically detect web browser window width change?

来源:互联网 发布:淘宝3c认证用别人 编辑:程序博客网 时间:2024/06/05 02:22

http://stackoverflow.com/questions/2172800/automatically-detect-web-browser-window-width-change


Try the resize event

$(window).resize(function() {  console.log('window was resized');});

0 0