| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 3 | <head> |
|---|
| 4 | <meta content="text/html; charset=utf-8" http-equiv="content-type" /> |
|---|
| 5 | <script type="text/javascript" src="http://ckeditor.com/apps/ckeditor/3.6.4/ckeditor.js"></script> |
|---|
| 6 | </head> |
|---|
| 7 | <body> |
|---|
| 8 | <textarea cols="80" id="editor1" name="editor1" rows="10">test</textarea> |
|---|
| 9 | <script type="text/javascript"> |
|---|
| 10 | //<![CDATA[ |
|---|
| 11 | CKEDITOR.replace( 'editor1', |
|---|
| 12 | { |
|---|
| 13 | startupFocus:true |
|---|
| 14 | }); |
|---|
| 15 | //]]> |
|---|
| 16 | </script> |
|---|
| 17 | </body> |
|---|
| 18 | </html> |
|---|
| 19 | |
|---|