Re: Text repeating if '&' character is present

  •  03-21-2016, 12:23 PM

    Re: Text repeating if '&' character is present

    hi,

     

    1. try replace the editor with a textarea and test it with the same content, does it work?

     

    2.  try add the code below to the bottom of your page, does it fix the issue?

     

    1. <script type="text/javascript">        
    2. function CuteEditor_FilterHTML(editor,code)     
    3. {     
    4.     return code.split("&amp;").join("&");  
    5. }     
    6. function CuteEditor_FilterCode(editor,code)     
    7. {     
    8.      return code.split("&amp;").join("&");    
    9. }     
    10. </script>    
     

    regards,

     

    Ken 

View Complete Thread