Re: IE10 issue with Copy/Paste from Word 2010

  •  05-16-2013, 1:23 PM

    Re: IE10 issue with Copy/Paste from Word 2010

    Hi,

     

    If it is the problem of the <!--[if !supportLists]--> and <!--[endif]-->, then please add the code below to the bottom of your page, it should fix this problem.

    <script type="text/javascript">

    function CuteEditor_FilterHTML(editor,code)

    {

    code=code.split("<!--[endif]-->").join("");

    return code.split("<!--[if !supportLists]-->").join("");

    }

    function CuteEditor_FilterCode(editor,code)

    {

    code=code.split("<!--[endif]-->").join("");

    return code.split("<!--[if !supportLists]-->").join("");

    }

    </script>

     

    Regards,

     

    Ken 

View Complete Thread