I'm trying to change the handler on a resizable element but it don't seems to works.
I used :
$(line)
.draggable({containment:"parent"})
.resizable({
containment:"parent",
handles: "e, w"
});
and now I want to pass the handler from "e, w" to "n, s", but when I do :
$(line)
.resizable({
containment:"parent",
handles: "n, s"
});
My handlers don't change. Why ?
Thanks for your attention.