Is it possible to change a div\'s width live with jQuery? And if it is, how?
div
What I want is to change its width depending on the browser\'s window width
Got better solution:
$('#element').resizable({ stop: function( event, ui ) { $('#element').height(ui.originalSize.height); } });