Hướng dẫn chèn FCKeditor vào website:
Trên thẻ head đưa đường dẫn file fckeditor.js:
Mã:
<script type="text/javascript" src="fckeditor/fckeditor.js"></script>
Chèn code vào website:
Mã:
<script type="text/javascript">
var oFCKeditor = new FCKeditor('noi_dung') ;
oFCKeditor.BasePath= "fckeditor/" ;
oFCKeditor.Height= 300 ;
oFCKeditor.Width= 750 ;
oFCKeditor.Value= ' ';
oFCKeditor.Config["EnterMode"]= "br" ;
oFCKeditor.Create() ;
</script>
Chúc bạn thành công!