Hi,
i am changing the height of my textarea as followed:
How chan i apply this to the FCKeditor?
i am changing the height of my textarea as followed:
var heightx = document.getElementById('articlearea').style.height; heightx = parseInt(heightx.replace(/px/i,"")) + 100; document.getElementById('articlearea').style.height = heightx + "px";
How chan i apply this to the FCKeditor?
Re: expand textarea on the fly
so knowing the ID of the editor's frame, you can now change its height:
document.getElementById("articlearea___Frame").height = heightx;
Re: expand textarea on the fly
Actually it was the one with the id="xyz___Frame". Thanks for your help.