I have a small editor on my website and I can add an image to it. I can resize images using jQuery (Resizable) plugin. For this reason, I had to disable image resizing borders. In Firefix, I did this with this:
execCommand("enableObjectResizing", false, false);
and it worked fine. How can I do something similar for IE?
Thanks in advance
source
share