Hello,
I use ckeditor to create and edit web pages...
my souce code look like this :
<textarea cols="80" id="corps" name="corps" rows="10"> <?php echo $contenu?></textarea>
<script type="text/javascript">
CKEDITOR.replace( 'corps',{toolbar : 'MyToolbar',uiColor : '#7AC4F3'});
</script>
the editor seems ok but when i make some change in the editor and submit, it post me back the initial data...
i've try to do an alert($('#corps').val()) on the submit event and it keeps giving me the initial data, so the problem is on this script....
Do you have any idears?
Nico
I use ckeditor to create and edit web pages...
my souce code look like this :
<textarea cols="80" id="corps" name="corps" rows="10"> <?php echo $contenu?></textarea>
<script type="text/javascript">
CKEDITOR.replace( 'corps',{toolbar : 'MyToolbar',uiColor : '#7AC4F3'});
</script>
the editor seems ok but when i make some change in the editor and submit, it post me back the initial data...
i've try to do an alert($('#corps').val()) on the submit event and it keeps giving me the initial data, so the problem is on this script....
Do you have any idears?
Nico