window.addEventListener( "DOMContentLoaded", function(){ const elmWrap = document.getElementById('allmine-instagram-ifram-wrap'); const elmFrame = elmWrap.firstElementChild; elmWrap.style = 'position: relative;'; elmFrame.style = 'position: absolute; top: 0; left: 0; width: 100%; height: 100% '; setSize(); window.addEventListener('resize',function(){ setSize(); }); function setSize() { const windowWidth = elmWrap.clientWidth; //const windowSm = 768; const windowSm = 500; if (windowWidth <= windowSm) { elmWrap.style.paddingTop = '90%'; } else { elmWrap.style.paddingTop = '494px'; } } });