Hello,
To create a FCKEditor object, I use your javascript code
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'MyTextarea',
"95%", "200", "Serious" ) ;
oFCKeditor.ReplaceTextarea() ;
}
</script>
But I want to create several FCKEditor objects in the same page. Howshoud I do ?
Thanks.
To create a FCKEditor object, I use your javascript code
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'MyTextarea',
"95%", "200", "Serious" ) ;
oFCKeditor.ReplaceTextarea() ;
}
</script>
But I want to create several FCKEditor objects in the same page. Howshoud I do ?
Thanks.
RE: several FCKEditor objects in the same page
var o2FCKeditor = new FCKeditor( 'MyTextarea',
"95%", "200", "Serious" ) ;
o2FCKeditor.ReplaceTextarea() ;
RE: several FCKEditor objects in the same pag
But the number of editors in each page depends on a Php variable.
RE: several FCKEditor objects in the same pag