Trigger the event which happens when I click the 'x' button on a TinyMCE modal dialog (like the advimage dialog) -
please see comment , rest of thread: [question]: tinymce image url select
thank you!
the 'x'-button element element using $(".mceclose")
. able assign event handler there (you need assign handler when dialog open/visible) else won't find such element , assignment fail. here is:
$(".mceclose").click(function() { alert('handler .click() called.'); });
Comments
Post a Comment