I am using the ace editor component from ajax.org inside a jquery tab interface. Each tab will contain a separate ace editor. Whenever I switch to a new tab, the editor in it wo
I use JQuery with the Ace Editor, and I found the following code worked really nicely for me. PS: My Code Editor Window is in an Iframe:
$('#modelFrame').mouseover(function() { try { $(this).get(0).contentWindow.editor.focus(); } catch (doNothing) { ;; } });