Re: clear editor1 using javascript

  •  01-10-2011, 4:12 PM

    Re: clear editor1 using javascript

    Dear lonnie,
     
    Please try the following code:
     
    function clearEditor()
       {
        // get the cute editor instance
        var editor1 = document.getElementById('<%=Editor1.ClientID%>');    
        // Set the editor
        editor1.setHTML("");
       }
     
    Thank you for asking
View Complete Thread