I created a contentEditable div to use as a rich textarea. It has resize handlers around it that I\'d like to get rid of. Any idea how I\'d do this?
Edit: This app
Just as a side note, you can disable Firefox's automatic resize handle feature by sending the (somewhat poorly-documented) enableObjectResizing command to the document:
document.execCommand("enableObjectResizing", false, false);
AFAIK, this can only safely be done once the document has loaded, and there's no way I know of to disable the grabber, which is a separate feature.