Reputation: 1294
This tinymce get function returns an Editor instance when passed an id. I would like to have an event fire (or a callback) every time this function is called:
tinymce.get('mytextbox')
I have tried:
tinymce.on('Get', function(e){console.log('Get called!',e);});
But that didn't work. Is there anything built into tinymce for this?
Upvotes: 1
Views: 111