Guest User

Untitled

a guest
Jul 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. $( "#tabs" ).tabs({
  2. load:function(event, ui){
  3. if(ui.index==5){
  4. if(typeof TinyMCE == "undefined") {
  5.  
  6. tinyMCE.init({
  7. // General options
  8. mode : "specific_textareas",
  9. editor_selector : "mceEditor",
  10. theme : "simple",
  11. });
  12. }
  13.  
  14. var note = tinyMCE.get('note').getContent()
  15.  
  16. // the_editor_id equals the id of the underliing textarea
  17. tinyMCE.execCommand('mceRemoveControl', false, the_editor_id);
Add Comment
Please, Sign In to add comment