1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <html>
<head>
<script type="text/javascript" src="js/ckeditor/ckeditor.js"></script>
<script type="text/javascript">
<!--
functiononLoad() {
CKEDITOR.replace("editor2", {
toolbar: [
['Bold','Italic','Underline','Strike'], ['Cut','Copy','Paste'],
['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock']
]
});
}
// -->
</script>
</head>
<body onload="returnonLoad();">
<div id="editor2">Sample text</textarea>
</body>
</html>
|