Re: javascript cleanuphtml and count number of characters

  •  09-01-2010, 12:47 AM

    Re: javascript cleanuphtml and count number of characters

    Hi surrounding,
     
    Try the new example
     
    1. <%@ Page Language="C#" %>   
    2.   
    3. <%@ Register Assembly="CuteEditor" Namespace="CuteEditor" TagPrefix="CE" %>   
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    5.   
    6.   
    7.   
    8. <html xmlns="http://www.w3.org/1999/xhtml">   
    9. <head id="Head1" runat="server">   
    10.     <title>GetPlainText</title>   
    11. </head>   
    12. <body>   
    13.     <form id="form1" runat="server">   
    14.         <CE:Editor ID="editor1" runat="server">   
    15.         </CE:Editor>   
    16.           <input type="button" value="Get length" onclick="getLength()"/>   
    17.         <div id="plainText" style="visibility: hidden">   
    18.         </div>   
    19.     </form>   
    20. </body>   
    21. </html>   
    22.   
    23. <script>      
    24. function getLength()      
    25. {      
    26.     var editor1=document.getElementById('<%= editor1.ClientID %>');      
    27.     var plainText=document.getElementById("plainText");      
    28.     plainText.innerHTML=editor1.GetHTML();      
    29.     alert(plainText.innerText.length);   
    30.     plainText.innerHTML="";      
    31. }      
    32.      
    33. </script>  
    Regards,
     
    ken
View Complete Thread