I want to have an object which is both resizable and draggable. I\'ll need:
of the object.
Is this possible?
If you mean draggable, that something like this:
$( "#elem" ).resizable().draggable();
Size and position you can point with css (first time). Than you can change them and get (when you resize or move) with jQuery.
You can add options to draggable() and resizable() methods. Reference is here: http://jqueryui.com/demos/resizable/ and http://jqueryui.com/demos/draggable/
P.S. This code requires jquery-ui.js file and jquery-ui.css (because it draws a marker to resize)
P.P.S.
With your link: In JavaScript frame I added the line:
$('#dropHere').resizable();
And I added css-style in managed resources "http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/themes/base/jquery-ui.css"
And it worked!