Bonjour,
j'ai installé FCKEditor, sur le header de ma page html j'ai mise le code js suivant :
Code X : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script type="text/javascript" src="fckeditor/fckeditor.js"></script>
<script type="text/javascript">
  window.onload = function()
  {
        var oFCKeditor1 = new FCKeditor( 'contenu' ) ;
	var oFCKeditor2 = new FCKeditor( 'breves' ) ;
	oFCKeditor1.ToolbarSet = 'Basic' ;
			 oFCKeditor1.BasePath = "fckeditor/" ;
			 oFCKeditor1.ReplaceTextarea() ;
	oFCKeditor2.ToolbarSet = 'Basic' ;
			 oFCKeditor2.BasePath = "fckeditor/" ;
			 oFCKeditor2.ReplaceTextarea() ;
  } 
</script>

et puis dans le body un textarea. Quand je lances le ficher sur mon serveur local (wamp) j'obtiens les messages d'erreur suivant :






Quelqu'un peut me dire l'origine de ces erreurs.
Merci