Hi,
Is there a way to set multiple alsoResize's in jQuery UI?
$('.selector').resizable({ alsoResize: '.other' });
I would like to set a couple of other elements to also resize, not just one. The official documentation tells nothing.
Hi,
Is there a way to set multiple alsoResize's in jQuery UI?
$('.selector').resizable({ alsoResize: '.other' });
I would like to set a couple of other elements to also resize, not just one. The official documentation tells nothing.
try
$('.selector').resizable({ alsoResize: '.other,.another,.andmanymore' });