its my code :
now if i have two textarea in one page its show me only the one textarea with FCkeditor and the second textarea
in regular textarea without FCkedtiro .. what to do ?
i tried to do one more script that i replace the new FCKeditor( 'content' ) ; content with short
but its not good...
what i need to do ?
<script type='text/javascript' src='../fckeditor/fckeditor.js'></script>
<script type='text/javascript'>
window.onload = function()
{
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
var oFCKeditor = new FCKeditor( 'content' ) ;
oFCKeditor.BasePath = '../fckeditor/' ;
oFCKeditor.ReplaceTextarea() ;
}
</script>
short content: <br> <textarea name='short' style='width: 100%; font-size:14;'></textarea>
<br><br>
content: <br> <textarea name='content' style='width: 100%; font-size:14;'></textarea>now if i have two textarea in one page its show me only the one textarea with FCkeditor and the second textarea
in regular textarea without FCkedtiro .. what to do ?
i tried to do one more script that i replace the new FCKeditor( 'content' ) ; content with short
but its not good...
what i need to do ?
