I am encountering an issue when attempting to change the handler on a resizable element.
Initially, I used :
$(line)
.draggable({containment:"parent"})
.resizable({
containment:"parent",
handles: "e, w"
});
Now, I am trying to switch the handler from "e, w" to "n, s", but when I execute:
$(line)
.resizable({
containment:"parent",
handles: "n, s"
});
The handlers do not update. What could be causing this issue?
Thank you for your help.