| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
|---|
| 2 | <html> |
|---|
| 3 | <head> |
|---|
| 4 | <meta charset="utf-8"> |
|---|
| 5 | <title>A Sample Page with 20 CKEditors</title> |
|---|
| 6 | |
|---|
| 7 | <script src="http://98.191.170.249:8080/TestItemBankTab_StageAdmin/resources/ckeditor/ckeditor.js"></script> |
|---|
| 8 | |
|---|
| 9 | </head> |
|---|
| 10 | <body> |
|---|
| 11 | <form> |
|---|
| 12 | <textarea name="editor1" id="editor1" rows="10" cols="80"> |
|---|
| 13 | This is textarea replaced with CKEditor 1. |
|---|
| 14 | </textarea> |
|---|
| 15 | <textarea name="editor2" id="editor2" rows="10" cols="80"> |
|---|
| 16 | This is textarea replaced with CKEditor 2. |
|---|
| 17 | </textarea> |
|---|
| 18 | <textarea name="editor3" id="editor3" rows="10" cols="80"> |
|---|
| 19 | This is textarea replaced with CKEditor 3. |
|---|
| 20 | </textarea> |
|---|
| 21 | <textarea name="editor4" id="editor4" rows="10" cols="80"> |
|---|
| 22 | This is textarea replaced with CKEditor 4. |
|---|
| 23 | </textarea> |
|---|
| 24 | <textarea name="editor5" id="editor5" rows="10" cols="80"> |
|---|
| 25 | This is textarea replaced with CKEditor 5. |
|---|
| 26 | </textarea> |
|---|
| 27 | <textarea name="editor6" id="editor6" rows="10" cols="80"> |
|---|
| 28 | This is textarea replaced with CKEditor 6. |
|---|
| 29 | </textarea> |
|---|
| 30 | <textarea name="editor7" id="editor7" rows="10" cols="80"> |
|---|
| 31 | This is textarea replaced with CKEditor 7. |
|---|
| 32 | </textarea> |
|---|
| 33 | <textarea name="editor8" id="editor8" rows="10" cols="80"> |
|---|
| 34 | This is textarea replaced with CKEditor 8. |
|---|
| 35 | </textarea> |
|---|
| 36 | <textarea name="editor9" id="editor9" rows="10" cols="80"> |
|---|
| 37 | This is textarea replaced with CKEditor 9. |
|---|
| 38 | </textarea> |
|---|
| 39 | <textarea name="editor10" id="editor10" rows="10" cols="80"> |
|---|
| 40 | This is textarea replaced with CKEditor 10. |
|---|
| 41 | </textarea> |
|---|
| 42 | <textarea name="editor11" id="editor11" rows="10" cols="80"> |
|---|
| 43 | This is textarea replaced with CKEditor 11. |
|---|
| 44 | </textarea> |
|---|
| 45 | <textarea name="editor12" id="editor12" rows="10" cols="80"> |
|---|
| 46 | This is textarea replaced with CKEditor 12. |
|---|
| 47 | </textarea> |
|---|
| 48 | <textarea name="editor13" id="editor13" rows="10" cols="80"> |
|---|
| 49 | This is textarea replaced with CKEditor 13. |
|---|
| 50 | </textarea> |
|---|
| 51 | <textarea name="editor14" id="editor14" rows="10" cols="80"> |
|---|
| 52 | This is textarea replaced with CKEditor 14. |
|---|
| 53 | </textarea> |
|---|
| 54 | <textarea name="editor15" id="editor15" rows="10" cols="80"> |
|---|
| 55 | This is textarea replaced with CKEditor 15. |
|---|
| 56 | </textarea> |
|---|
| 57 | <textarea name="editor16" id="editor16" rows="10" cols="80"> |
|---|
| 58 | This is textarea replaced with CKEditor 16. |
|---|
| 59 | </textarea> |
|---|
| 60 | <textarea name="editor17" id="editor17" rows="10" cols="80"> |
|---|
| 61 | This is textarea replaced with CKEditor 17. |
|---|
| 62 | </textarea> |
|---|
| 63 | <textarea name="editor18" id="editor18" rows="10" cols="80"> |
|---|
| 64 | This is textarea replaced with CKEditor 18. |
|---|
| 65 | </textarea> |
|---|
| 66 | <textarea name="editor19" id="editor19" rows="10" cols="80"> |
|---|
| 67 | This is textarea replaced with CKEditor 19. |
|---|
| 68 | </textarea> |
|---|
| 69 | <textarea name="editor20" id="editor20" rows="10" cols="80"> |
|---|
| 70 | This is textarea replaced with CKEditor 20. |
|---|
| 71 | </textarea> |
|---|
| 72 | <script> |
|---|
| 73 | // Replace the <textarea id="editor1"> with a CKEditor |
|---|
| 74 | // instance, using default configuration. |
|---|
| 75 | CKEDITOR.replace( 'editor1' ); |
|---|
| 76 | CKEDITOR.replace( 'editor2' ); |
|---|
| 77 | CKEDITOR.replace( 'editor3' ); |
|---|
| 78 | CKEDITOR.replace( 'editor4' ); |
|---|
| 79 | CKEDITOR.replace( 'editor5' ); |
|---|
| 80 | CKEDITOR.replace( 'editor6' ); |
|---|
| 81 | CKEDITOR.replace( 'editor7' ); |
|---|
| 82 | CKEDITOR.replace( 'editor8' ); |
|---|
| 83 | CKEDITOR.replace( 'editor9' ); |
|---|
| 84 | CKEDITOR.replace( 'editor10' ); |
|---|
| 85 | CKEDITOR.replace( 'editor11' ); |
|---|
| 86 | CKEDITOR.replace( 'editor12' ); |
|---|
| 87 | CKEDITOR.replace( 'editor13' ); |
|---|
| 88 | CKEDITOR.replace( 'editor14' ); |
|---|
| 89 | CKEDITOR.replace( 'editor15' ); |
|---|
| 90 | CKEDITOR.replace( 'editor16' ); |
|---|
| 91 | CKEDITOR.replace( 'editor17' ); |
|---|
| 92 | CKEDITOR.replace( 'editor18' ); |
|---|
| 93 | CKEDITOR.replace( 'editor19' ); |
|---|
| 94 | CKEDITOR.replace( 'editor20' ); |
|---|
| 95 | </script> |
|---|
| 96 | </form> |
|---|
| 97 | </body> |
|---|
| 98 | </html> |
|---|