| 1 | <!DOCTYPE html> |
|---|
| 2 | <html> |
|---|
| 3 | <head> |
|---|
| 4 | <title>#10290</title> |
|---|
| 5 | <meta charset="utf-8"> |
|---|
| 6 | <script src="../ckeditor.js"></script> |
|---|
| 7 | </head> |
|---|
| 8 | <body> |
|---|
| 9 | <form action="sample_posteddata.php" method="post"> |
|---|
| 10 | |
|---|
| 11 | <textarea cols="80" id="editor0" name="editor0" rows="10"> |
|---|
| 12 | it-IT |
|---|
| 13 | </textarea> |
|---|
| 14 | <textarea cols="80" id="editor1" name="editor1" rows="10"> |
|---|
| 15 | en-GB |
|---|
| 16 | </textarea> |
|---|
| 17 | <textarea cols="80" id="editor2" name="editor2" rows="10"> |
|---|
| 18 | en |
|---|
| 19 | </textarea> |
|---|
| 20 | <script> |
|---|
| 21 | |
|---|
| 22 | CKEDITOR.replace( 'editor0', { language: 'it-IT' } ); |
|---|
| 23 | CKEDITOR.replace( 'editor1', { language: 'en-GB' } ); |
|---|
| 24 | CKEDITOR.replace( 'editor2', { language: 'en' } ); |
|---|
| 25 | |
|---|
| 26 | </script> |
|---|
| 27 | </form> |
|---|
| 28 | </body> |
|---|
| 29 | </html> |
|---|