i'm using jQuery UI Resizable, and i need to set handles option after the initialization.
I followed the API example and initialization method works just fine, but setter method seems not working. Am i missing anything?
// Initialization works fine!
$('#containerGreen').resizable( { handles: "n, e, s, w" } );
// Setter NOT working
$('#containerRed').resizable();
$('#containerRed').resizable( "option", "handles", "n, e, s, w" );
Live Demo