Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm writing a plugin for TinyMCE and I want to use jQuery to do some manipulation on the document being editted.

I'm not looking for a way to use TinyMCE with jQuery (e.g. an .tinymce() method on a selector), I know there are solutions for that.

Basically I need to include jQuery in the iframe generated by TinyMCE.

tinymce.dom.ScriptLoader seems to load in the parent window, not in the iframe, so that's not an option.

What I've tried so far:

  • Load jquery through ScriptLoader in the parent and plugin context (the latter has no effect at all, the former loads it in the wrong context)
  • Access window.parent.$, which is undefined (even if it's loaded in the parent window)
  • RTFM'ing and googling but no relevant hits. If the plugin opens a dialog then there is an option to load additional javascript, but that's also not what I need.

Anyone using jQuery in TinyMCE plugins? How?

Update / solutution

Thanks to Thariama's suggestion I was able to get this to work. You can use either an explicit tinymce.get() to get the editor, or the 'ed' instance that's passed to your plugin's init() method. It turns out however that at the init stage itself you cannot (yet) access the parent this way. You can do this in a specific handler.

E.g.

(function($) {
  tinymce.create('tinymce.plugins.SOSamplePlugin', {
    init: function(ed, url) {
        $ = ed.getWin().parent.jQuery; // <- WON'T WORK!

        ed.addCommand('soCmd', function(ui, v) {
            if(e = ed.selection.getNode()) {
                $ = ed.getWin().parent.jQuery; // <- WORKS!
                $(e).wrap('<div class="sample" />');
                ed.execCommand("mceRepaint");
            }
        });
        ed.addButton('SO', {
           title: 'Title',
           cmd: 'soCmd',
           image: 'somebutton.png'
        });
    },
    getInfo: function() {
        return {
            longname: 'Example Plugin',
            author: 'Ivo',
            authorurl: 'http://vanderwijk.info/',
            infourl: 'http://vanderwijk.info',
            version: '1.0'
        };
    }
  });
  tinymce.PluginManager.add('so', tinymce.plugins.SOSamplePlugin);
})($);
share|improve this question
1  
What have you tried? – Praveen Kumar Nov 11 '12 at 16:48

3 Answers

up vote 2 down vote accepted

It is easy

var editor = tinymce.get('your_editor_id');

jQuery is acessible using

editor.getWin().parent.jQuery
share|improve this answer
thanks! It's the combination of getWin() and/or the appropriate stage when to call it - see update in post. – Ivo van der Wijk Nov 14 '12 at 8:22

Well as per my experience says you cannot make any JS or jquery changes to an IFrame, so this thing is not possible.

share|improve this answer
you can do basic DOM manupulation in a TinyMCE plugin, I don't see why you can't do that with jQuery – Ivo van der Wijk Nov 11 '12 at 17:58

I agree with Ankur Jain, I don't think you can affect the Iframe through jQuery.

Do you need TinyMCE? If you are using jQuery, you can check out Bootstrap WYSIHTML5, which is extremely lightweight, and has an events handler that will let you do anything you want to the text you are editing. Of course if you use it, you will need Twitter Boostrap, too.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.