tinyMCE is adding those move and resize handles to some of my elements (not just the images).
i would love to get rid of them all together but i have had no success.
these did not work for me
tinyMCE.init({
object_resizing : false
});
seems like it should be real easy.
OK, so it looks like it is adding the resize js to any element that is absolutely positioned. if that helps anyone with an answer.
i just tried to remove it but i need to position it to do what i need.
in the body tag of your editor is an attribute
contenteditable="true". that is what is adding those pesky resizing elements.if you set that attribute to
falseyou will not be able to edit anything.what you need to do is set up an
onMouseDownlistener. if the user is clicking on the elements in question… set it tocontenteditable="false". if any other element, set it tocontenteditable="true".try this…