With CSS' resize rule, one can allow an element to be resized like so:
.someClass {
resize: vertical/horizontal/both
}
However, I'm unable to find a way to detect an element is being resized.
HTML' Drag and Drop API has built-in events to detect dragging which are documented here.
Is there a similar way I can detect when an element is being dragged, or make my own version?