外部ポップアップ ウィンドウを呼び出すプラグインを作成しました。
exec : function( editor )
{
window.open('index.php?mod=xxxx','Name popup','width=900,height=600');
}
その部分はうまく機能します。データを CKeditor に送り返すには? jqueryを使用してCKeditorのオープナーインスタンスの現在の位置にHTMLを追加したいと思います。
私はこれを試しましたが、うまくいきません:
$('a#clickMe').click(function()
{
window.opener.CKeditor.insertHtml('Bla bla bla');
});