| 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 | <script type="text/javascript" src="/html/includes/fckeditor/fckeditor.js"></script> |
|---|
| 5 | <script type="text/javascript"> |
|---|
| 6 | function init(){ |
|---|
| 7 | var fckEditorObj = new FCKeditor('details'); |
|---|
| 8 | fckEditorObj.BasePath = "/html/includes/fckeditor/"; |
|---|
| 9 | fckEditorObj.Height = "600px"; |
|---|
| 10 | fckEditorObj.ReplaceTextarea(); |
|---|
| 11 | } |
|---|
| 12 | </script> |
|---|
| 13 | |
|---|
| 14 | <style type="text/css"> |
|---|
| 15 | div.fckHolder { |
|---|
| 16 | height:600px; |
|---|
| 17 | width:800px; |
|---|
| 18 | background-color:gray; |
|---|
| 19 | border:2px solid red; |
|---|
| 20 | } |
|---|
| 21 | </style> |
|---|
| 22 | </head> |
|---|
| 23 | <body onload="init()"> |
|---|
| 24 | |
|---|
| 25 | <div class="fckHolder"> |
|---|
| 26 | <textarea id="details"></textarea> |
|---|
| 27 | </div> |
|---|
| 28 | |
|---|
| 29 | </body> |
|---|
| 30 | </html> |
|---|
| 31 | |
|---|