In this plunk I have an input field type text with jQuery resizable/draggable applied. There are two problems. First, draggable doesn't work. Second, resizable only works with a "South East" handle, even though I specified "all". Hox to fix this?
HMTL
<input type="text" class="field" />
Javascript
$( document ).ready(function() {
$(".field").draggable({ });
$(".field").resizable({
handles: "all"
});
});