Wednesday, November 8, 2023

TinyMCE Insert/Edit link not editable

 To fix this add e.stopImmediatePropagation() as below.

$(document).on('focusin', function (e) {

            if ($(e.target).closest(".tox-tinymce, .tox-tinymce-aux, .moxman-window, .tam-assetmanager-root").length) {

                e.stopImmediatePropagation();

            }

        });

No comments:

Post a Comment

TinyMCE Insert/Edit link not editable

 To fix this add  e.stopImmediatePropagation()  as below. $(document).on('focusin', function (e) {             if ($(e.target).close...