Javascript Event when HTML Editor is shown?

Hey everyone,

I want to hook into when the HTML Editor is show, or when the Reply button is clicked. I have had no success with your run of the mill $(document).on('click','.new-reply');

I had SOME luck using the evolutionHtmlEditor jQuery plugin, however I am still unable to execute code when, and only when the HTMl Editor is SHOWN to the user.

The code below executes on page load. Any ideas on what to try next?

        <script>
            (function(jQuery, global) {
            
                var ready = $(document).evolutionHtmlEditor('ready', function() { alert('Ready!'); })
            
            })(jQuery, window);


        </script>