I'm trying to replace a <TEXTAREA> with the CFKeditor, whatever i do, i keep getting the following error message in Firefox:
FCKeditor is not defined
The code i'm using in my page is the following:
<head>
<title></title>
<script type="text/javascript" src="/FCKeditor/fckeditor.js"></script>
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'tekst', 920, 300, true, false ) ;
oFCKeditor.ToolbarSet = "default";
oFCKeditor.ReplaceTextarea() ;
}
</script>
</head>
The textarea looks like this:
<textarea rows="6" cols="90" id="tekst" name="tekst">
The path of the fckeditor.js is right, i'm definatly sure of that.. but it seems like it doesn't load the function or something like that, i'm really out of options!!
Anyone knows the solution to this problem?!
Thnx, Emile!
FCKeditor is not defined
The code i'm using in my page is the following:
<head>
<title></title>
<script type="text/javascript" src="/FCKeditor/fckeditor.js"></script>
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'tekst', 920, 300, true, false ) ;
oFCKeditor.ToolbarSet = "default";
oFCKeditor.ReplaceTextarea() ;
}
</script>
</head>
The textarea looks like this:
<textarea rows="6" cols="90" id="tekst" name="tekst">
The path of the fckeditor.js is right, i'm definatly sure of that.. but it seems like it doesn't load the function or something like that, i'm really out of options!!
Anyone knows the solution to this problem?!
Thnx, Emile!
RE: Error: FCKeditor is not defined ?!?!