Re: html support

  •  02-27-2014, 7:51 AM

    Re: html support

    Hi bartje,

     

    Please add the code below into the bottom of your page, it will switch the <br /> to <br>.

     

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

    Regards,

     

    Ken 

View Complete Thread