1 | <html> |
---|
2 | <head> |
---|
3 | <script type="text/javascript" src="../3.2/ckeditor.js"></script> |
---|
4 | </head> |
---|
5 | <body> |
---|
6 | <textarea cols="50" rows="5" id="editor1" name="editor1"></textarea> |
---|
7 | <script type="text/javascript"> |
---|
8 | CKEDITOR.replace('editor1', {skin: 'kama', language: 'he'}); |
---|
9 | </script> |
---|
10 | <textarea cols="50" rows="5" id="editor2" name="editor2"></textarea> |
---|
11 | <script type="text/javascript"> |
---|
12 | CKEDITOR.replace('editor2', {skin: 'office2003', language: 'he'}); |
---|
13 | </script> |
---|
14 | <textarea cols="50" rows="5" id="editor3" name="editor3"></textarea> |
---|
15 | <script type="text/javascript"> |
---|
16 | CKEDITOR.replace('editor3', {skin: 'v2', language: 'he'}); |
---|
17 | </script> |
---|
18 | </body> |
---|
19 | </html> |
---|