wolf11th: Is there any js to read editor's height? I found a problem, if a editor is in a invisible div, I initiate the editor and then try to resize the height, it doesn't work Can you provide a client side method to read the height? thx Hi wolf11th, example 1 <%@ Page Language="C#" ValidateRequest="false" %> <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %> <html> <head> </head> <body> <form id="Form1" runat="server"> <input type="button" value="show editor" onclick="show()" /> <div id="div1" style="visibility: hidden"> <CE:Editor ID="editor1" runat="server"> </CE:Editor> </div> </form> </body> </html> <script> var editor1 = document.getElementById("<%= editor1.ClientID %>"); var div1=document.getElementById("div1"); function show() { div1.style.visibility="visible"; editor1.SetHeight(1000); } </script> example 2 <%@ Page Language="C#" ValidateRequest="false" %> <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %> <html> <head> </head> <body> <form id="Form1" runat="server"> <input type="button" value="show editor" onclick="show()" /> <div id="div1" style=" display:none"> <CE:Editor ID="editor1" runat="server"> </CE:Editor> </div> </form> </body> </html> <script> var div1=document.getElementById("div1"); function show() { div1.style.display="block"; } function CuteEditor_OnInitialized(editor) { editor.SetHeight(1000); } </script> Regards, ken