I have assumed that you have downloaded and got started with CKEDITOR.Step 1 – The html file is shown below:<html>
<head>
<title>Writer</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<style>
.cke_contents {
height: 400px !important;
}
</style>
</head>
<body>
<form action="sample_posteddata.php" method="post">
<textarea id="editor" > </textarea>
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'editor',
{
fullPage : true,
uiColor : '#9AB8F3',
toolbar : 'MyToolbar'
});
//]]>
</script>
</form>
</body>
</html>
Note that the jquery js fil…
Note that the jquery js fil…