I'm experiencing some difficulties with the jQuery UI and html2canvas plugins.
Take a look at the jsfiddle link provided below to review the jQuery code: http://jsfiddle.net/fX262/7/
$(function () {
// jQuery functions here
});
- Why are the images positions skewed when I drag them from the right side to the left side container?
- Why can't I resize the dropped images?
- When I click the "Post" button, why isn't a screenshot of the contents in "#borrd-droppable" div generated and displayed in "#canvasImg" div?
I require this to work seamlessly on Firefox 28, Google Chrome 32, and ideally on IE 8 as well.
Any assistance would be greatly appreciated.
EDIT :
Resizable functionality has been fixed by adding $(".borrd-item").resizable();
inside drop: function (event, ui) {}
along with corresponding jQuery UI CSS. However, after dragging and dropping items on the left side, they become undraggable. Any insights on how to resolve this issue?
http://jsfiddle.net/fX262/9/