Thursday, June 20, 2019

Iframe resizer while using TinyMCE


Iframe resizer while using TinyMCE



$(window).on('load', function() {
    $('.tox-tinymce').css('height', $(document.getElementById('template_body_ifr').contentWindow.document).find('html').height()+100+'px');
    $(document.getElementById('template_body_ifr').contentWindow.document).css('height', $(document.getElementById('template_body_ifr').contentWindow.document).find('html').height()+'px');
    $(document.getElementById('template_body_ifr').contentWindow.document).keydown(function() {
       $('.tox-tinymce').css('height', $(document.getElementById('template_body_ifr').contentWindow.document).find('html').height()+100+'px');
       $(document.getElementById('template_body_ifr').contentWindow.document).css('height', $(document.getElementById('template_body_ifr').contentWindow.document).find('html').height()+'px');
    });
  });