Skip to content Skip to sidebar Skip to footer

Other Content Seen And Blinks During Tinymce Loading

I am having textarea and buttons under it. I am adding tinymce editor to this textarea. However, when the pages is loaded first time, user can see something like blinking. He sees

Solution 1:

You can add style="display: none;" on you buttons and then do this in your tinymce configuration:

tinymce.init({
    ...
    setup: function(editor) {
        editor.on('init', function(e) {
            $("#doc_send_email").css("display", "block");
            $("#pritn_pdf_btn").css("display", "block");
        });
    }
});

Post a Comment for "Other Content Seen And Blinks During Tinymce Loading"