Hey Traq ,
Good morning..
i need your help for cke editor . i am trying to include ckeditor in HTML code but it is not working. i have included ckeditor.js files in the file.
i want replace textarea with ckeditor but its not working . please help me out
here is the code .
<!DOCTYPE html>
<html>
<head>
<title>A Simple Page with CKEditor</title>
<script src="ckeditor.js" ></script>
</head>
<body>
<form>
<textarea name=”editor1″ id=”editor1″ rows=”10″ cols=”80″>
This is my textarea to be replaced with CKEditor.
</textarea>
<script>
CKEDITOR.replace( 'editor1' );
</script>
</form>
</body>
</html>