Skip to main content
$(document).ready(function() { let interval = setInterval(function() { $('#lex-web-ui-iframe').css('bottom', '1.5rem'); $('#lex-web-ui-iframe').css('height', '60vh'); if ($('#lex-web-ui-iframe').css('bottom') === '1.5rem') { clearInterval(interval); } if ($('#lex-web-ui-iframe').css('height') === '60vh') { clearInterval(interval); } }, 100); });
Back to top