Re: Object PARAM tags get mangled

  •  03-24-2010, 9:46 PM

    Re: Object PARAM tags get mangled

    Hi moskie,
     
    It is not the best way, but for now you can add the code below in the page to avoid this problem.
     
    1. <script>   
    2. function CuteEditor_FilterHTML(editor,code)   
    3. {   
    4.  return code.replace(/(\<\/param\>)/i, "");   
    5. }   
    6. function CuteEditor_FilterCode(editor,code)   
    7. {   
    8.  return code.replace(/(\<\/param\>)/i, "");   
    9. }   
    10.   
    11. </script>  

    Regards,
     
    Ken
View Complete Thread