Re: <br/ /> in output causing xhtml to not validate

  •  11-14-2010, 7:53 PM

    Re: <br/ /> in output causing xhtml to not validate

    Hi jorbo,
     
    We will fix this issue soon.
     
    For now, you can add the code below into the page and try again.
     
    <script>
    function CuteEditor_FilterHTML(editor,code)
    {
     return code.split("<br/ />").join("<br/>");
    }
    function CuteEditor_FilterCode(editor,code)
    {
     return code.split("<br/ />").join("<br/>");
    }
    </script>
     
    Regards,
     
    ken
View Complete Thread