Hello, I am writing because I have changed fckeditor for ckeditor and I have problems with utf8 encoding when stored in the database. I have done all that is said the forum.
$(document).ready(function(){
$("#editar").click(function(){
CKEDITOR.replace( 'editor1', {
customConfig: 'config_optimizado.js'
});
});
$("#enviar").click(function(){
var editor = CKEDITOR.instances.editor1.getData();
alert( editor );
});
})
in the body
<div name="editor1">
<?
$data="Categoría: Acción,";
echo $data;
?> </div>
<input id="editar" type="button" value="Editar">
<input id="enviar" type="button" value="Enviar">
In the config_optimizado.js
config.entities = false;
config.entities_latin = false;
But i have problems because when i print alert the content "Categoría: Acción," I see "Categ$iacute;a: Acción,"
As I can see good content editor?

I do not know why but now it
I do not know why but now it works and I've only added two more lines
config.entities = false;
config.entities_latin = false;
config.entities_greek = false;
config.basicEntities = false;