Hi dunroamins,
Abut the IE9 problem. It is the browser limitation, the ie do not allow to input the plain text in first input. So we add the <div> to wrap it.
About the chrome problem, I think the code is about one of your chrome plug-in. Can you disable all plug-ins of your chrome and try again? If it work, then enable it one by one, you should find out which one causes the issue.
Also, you can add the html filter code below to the bottom of your page, it will remove the addition code for you.
<script>
function CuteEditor_FilterHTML(editor,code)
{
return code.split('<div id="LCS_336D0C35_8A85_403a_B9D2_65C292C39087_communicationDiv"></div>').join('');
}
function CuteEditor_FilterCode(editor,code)
{
return code.split('<div id="LCS_336D0C35_8A85_403a_B9D2_65C292C39087_communicationDiv"></div>').join('');
}
</script>
Regards,
Ken