Ticket #10934: index.html
File index.html, 379 bytes (added by , 11 years ago) |
---|
Line | |
---|---|
1 | <!DOCTYPE html> |
2 | <html lang="en"> |
3 | <head> |
4 | <meta charset="utf-8"> |
5 | <title>test</title> |
6 | <script src="ckeditor/ckeditor.js"></script> |
7 | </head> |
8 | <body> |
9 | |
10 | <textarea name="editor1"></textarea> |
11 | |
12 | <script type="text/javascript"> |
13 | CKEDITOR.replace( 'editor1' ); |
14 | |
15 | CKEDITOR.instances.editor1.on('blur', function() { |
16 | alert('test'); |
17 | }); |
18 | </script> |
19 | |
20 | </body> |
21 | </html> |