Wiki source code of Online Compiler

Version 10.1 by cmot on 2014/06/26 14:56

Hide last authors
cmot 5.1 1 {{html}}
cmot 8.1 2 <script type="text/javascript">
3 function calcHeight()
4 {
5 //find the height of the internal page
6 var the_height=
7 document.getElementById('the_iframe').contentWindow.
8 document.body.scrollHeight;
9
10 //change the height of the iframe
11 document.getElementById('the_iframe').height=
12 the_height;
13 }
14 </script>
15
cmot 9.1 16
cmot 10.1 17 <iframe scrolling="no" id="the_iframe" onLoad="calcHeight();" height="400px" frameborder="0" src="http://www.sccharts.com" name="SCCharts Compiler">
cmot 5.1 18 <p>Your browser does not support iframes, you can visit the content at:
19 <a href="http://www.sccharts.com">http://www.sccharts.com</a></p>
20 </iframe>
cmot 6.1 21
22
cmot 5.1 23 {{/html}}