Change div width live with jQuery

前端 未结 5 1211
闹比i
闹比i 2021-01-01 13:54

Is it possible to change a div\'s width live with jQuery? And if it is, how?

What I want is to change its width depending on the browser\'s window width

5条回答
  •  不知归路
    2021-01-01 14:35

    Got better solution:

    $('#element').resizable({
        stop: function( event, ui ) {
            $('#element').height(ui.originalSize.height);
        }
    });
    

提交回复
热议问题