Re: Javascript to set focus

  •  08-27-2010, 10:23 AM

    Re: Javascript to set focus

    Dear surrounding,
     
    Please try the following code:
    function setFocus()
       {
        // get the cute editor instance
        var editor1 = document.getElementById('<%=editor.ClientID%>');
        
        editor1.FocusDocument();
       }
    You can refer to JavaScript-API.asp which can be found in download package.
     
    thanks for asking
View Complete Thread