SOLUTION:
Seems like just using the tabindex does not work as the editor is not ready yet. That's why I added the 2 second delay with setTimeout.
$(document).ready(function (){ setTimeout(function(){$(".mceToolbar *").attr('tabindex',"-1");},2000); });
By PHPin24 @ 2009-11-02 19:24:35
|