1: 2: 3: 4: 5:
tinyMCEPopup.execCommand('mceInsertContent', false, dom.createHTML('a', { class : 'special', title : 'my link', href : '/' }));
1:
<a href="/" class="special" title="my link"></a>
1: 2: 3: 4: 5: 6:
tinyMCEPopup.execCommand('mceInsertContent', false, dom.createHTML('a', { class : 'special', title : 'my link', href : '/', innerHTML : 'Link Text' }));
tinyMCEPopup.execCommand('mceInsertContent', false, dom.createHTML('a', { class : 'special', title : 'my link', href : '/'}, 'Link Text' ));