tao-test/app/tao/views/js/test/iframeResizer/framecontent2.html

24 lines
614 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Iframe 2 dynamic content 200 to 600px</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<style>
* { margin: 0; padding: 0; border-width: 0; }
body > div{ height: 200px; }
</style>
</head>
<body>
<div id="dynamic">
</div>
<script>
setTimeout(function(){
var dyn = document.getElementById('dynamic');
dyn.style.height = '600px';
}, 1000);
</script>
</body>
</html>