JSFiddle - React, Tailwind, and code Playground

by vestigal

HTML

<iframe id="testIframe" src="" seamless></iframe>

JavaScript

function setIframeHeight() {
    console.log('getting');
    console.log($(window).height());
    console.log('got');
}

$(function () {
    $(document).keyup(function (e) {
        if (e.keyCode == 13)
            document.getElementById('testIframe').document.location.href = 'http://www.education.gov.yk.ca/pdf/pdf-test.pdf';
    });

    $(document).focusout(function (e) {
        setIframeHeight();
    });
});