I have a simple integration using the CKEDITOR.replace( 'editor1' ); method. The result is rendered OK, but looking at the Source Code my inserted text is placed after the closing html tag- after this block:
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
<my text here>
How to I get it to insert between the <body></body> tags? I need to save the resulting edited text back to the server as HTML & need it properly formed. Thanks
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
<my text here>
How to I get it to insert between the <body></body> tags? I need to save the resulting edited text back to the server as HTML & need it properly formed. Thanks
Re: Text inserted after closing </html> tag, not within Bo