|
<script src="<?php echo base_url('js/jquery-1.4.2.min.js')?>" type="text/javascript"></script>
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor("content1");
oFCKeditor.BasePath ="<?php echo base_url().'js/fckeditor/'?>";
oFCKeditor.Height = 200;
oFCKeditor.ToolbarSet = "Default";
oFCKeditor.ReplaceTextarea();
}
</script>
<textarea name="content1" style="width:700px;height:200px;visibility:hidden;"><?php echo $company['content'] ?></textarea>
|
|