I have a situation where I am displaying TinyMCE content inside a modal in read-only mode to show the user the information but not allow them to edit it. The content displays correctly, however, my links are not functioning. When clicked, they do not trigger any action.
tinyMCE.init({
selector: '#notificacao-text',
readonly : 1,
toolbar: false,
menubar: false,
statusbar: false,
width: 'auto',
height: 300,
extended_valid_elements: 'a[href|target=_parent]',
content_css : '/styles/tinymce.css'
});