Hi guys i tried the full day, but i did not get it.
I use the tinymce editor and in all browsers it works fine, except in ** chrome. I use the autoresize in re
I had a similiar problem with Chrome, tinyMCE 3.5.6 and the autoresize plugin. What helped was manually calling the resize plugin in the init_instance_callback. I'm calling tinyMCE (jQuery version) like this now when the window is loaded:
$('.tinymce').tinymce({
theme : 'advanced',
plugins : 'autoresize',
width: '100%',
height: 400,
autoresize_min_height: 400,
autoresize_max_height: 800,
init_instance_callback: function (inst) { inst.execCommand('mceAutoResize'); }
});