As an experiment, I created a few div\'s and rotated them using CSS3.
.items {
position: absolute;
cursor: pointer;
background:
the answer of David Wick was very helpful... thanks... here i coded the same workaround for the resizeable, because it has the same problem:
search for the following in jquery.ui.resizable.js
var o = this.options, iniPos = this.element.position(), el = this.element;
and replace with:
var o = this.options, iniPos = {top:this.element[0].offsetTop,left:this.element[0].offsetLeft}, el = this.element;