| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 2 | <html> |
|---|
| 3 | <head> |
|---|
| 4 | <meta content="text/html; charset=utf-8" http-equiv="content-type" /> |
|---|
| 5 | <script type="text/javascript" src="../ckeditor_source.js"></script> |
|---|
| 6 | <script src="sample.js" type="text/javascript"></script> |
|---|
| 7 | <link href="sample.css" rel="stylesheet" type="text/css" /> |
|---|
| 8 | </head> |
|---|
| 9 | <body> |
|---|
| 10 | <form action="#" method="get"> |
|---|
| 11 | <textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea> |
|---|
| 12 | <script type="text/javascript"> |
|---|
| 13 | CKEDITOR.replace("editor1"); |
|---|
| 14 | |
|---|
| 15 | </script> |
|---|
| 16 | <p> |
|---|
| 17 | <input type="button" value="Click"/> |
|---|
| 18 | </p> |
|---|
| 19 | </form> |
|---|
| 20 | </body> |
|---|
| 21 | </html> |
|---|