Guest User

Untitled

a guest
Feb 21st, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script src="https://cdn.ckeditor.com/4.8.0/full-all/ckeditor.js"></script>
  4. <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS_HTML"></script>
  5. <script>
  6. function onSubmit(){
  7. var data = CKEDITOR.instances.editor1.getData()
  8. document.getElementById("show").innerHTML=data
  9. }
  10. </script>
  11. </head>
  12. <body>
  13.  
  14. <form action="#" >
  15. <textarea rows="20" cols="70" class="ckeditor" id="editor1" name="test1">
  16. </textarea>
  17. <input type="button" value="save" onclick="onSubmit()" >
  18.  
  19. </form>
  20. <div id="show" id='ed2'></div>
  21.  
  22. <script>
  23.  
  24. CKEDITOR.replace( 'editor1', {
  25. extraPlugins: 'mathjax',
  26. mathJaxLib: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS_HTML',
  27. height: 320
  28. } );
  29.  
  30. if ( CKEDITOR.env.ie && CKEDITOR.env.version == 8 ) {
  31. document.getElementById( 'ie8-warning' ).className = 'tip alert';
  32. }
  33.  
  34. </script>
  35. </body>
  36. </html>
Add Comment
Please, Sign In to add comment