Guest User

Untitled

a guest
Jul 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. tinyMCE.init({
  2. theme : "advanced",
  3. mode : "textareas",
  4. plugins : "paste",
  5. theme_advanced_buttons3_add : "pastetext,pasteword,selectall",
  6. paste_auto_cleanup_on_paste : true,
  7. paste_preprocess : function(pl, o) {
  8. // Content string containing the HTML from the clipboard
  9. alert(o.content);
  10. o.content = "-: CLEANED :-n" + o.content;
  11. },
  12. paste_postprocess : function(pl, o) {
  13. // Content DOM node containing the DOM structure of the clipboard
  14. alert(o.node.innerHTML);
  15. o.node.innerHTML = o.node.innerHTML + "n-: CLEANED :-";
  16. }
  17. });
Add Comment
Please, Sign In to add comment