50 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head>
 | |
| <meta charset="utf-8">
 | |
| <title>The Basics</title>
 | |
| <link rel="shortcut icon" href="../images/logo.ico">
 | |
| <link rel="stylesheet" type="text/css" href="../css/style.css">
 | |
| <script type="text/javascript">
 | |
| function getDocHeight(doc) {
 | |
|     doc = doc || document;
 | |
|     // stackoverflow.com/questions/1145850/
 | |
|     var body = doc.body, html = doc.documentElement;
 | |
|     var height = Math.max( body.scrollHeight, body.offsetHeight, 
 | |
|         html.clientHeight, html.scrollHeight, html.offsetHeight );
 | |
|     return height;
 | |
| }
 | |
| 
 | |
| function setIframeHeight(id) {
 | |
|     var ifrm = document.getElementById(id);
 | |
|     var doc = ifrm.contentDocument? ifrm.contentDocument: 
 | |
|         ifrm.contentWindow.document;
 | |
|     ifrm.style.visibility = 'hidden';
 | |
|     ifrm.style.height = "10px"; // reset to minimal height ...
 | |
|     // IE opt. for bing/msn needs a bit added or scrollbar appears
 | |
|     ifrm.style.height = getDocHeight( doc ) + 4 + "px";
 | |
|     ifrm.style.visibility = 'visible';
 | |
| }
 | |
| 
 | |
| document.getElementById('ifrm').onload = function() { // Adjust the Id accordingly
 | |
|     setIframeHeight(this.id);
 | |
| }
 | |
| </script>
 | |
| </head>
 | |
| <body>
 | |
| 	<div class="statusbar">
 | |
| <ul>
 | |
| 	<li><a class="statushome" href="..">Home</a></li>
 | |
| 	<li><a href="../Basics/">The Basics</a></li>
 | |
| 	<li><a href="#">Tutorials</a></li>
 | |
| 	<li><a href="../Dictionary">Dictionary</a></li>
 | |
| 	<li><a href="../Contributors">Community Members</a></li>
 | |
| </ul>
 | |
| 		</div>
 | |
| <br style="line-height: 300%">
 | |
| <h1>Dictionary</h1>
 | |
| <p class="centertext">More items will be constantly added to the list</p>
 | |
| 	 <iframe class="centerimage" src="./dictionary.html" height="400px" width="90%" frameborder="3" id="ifrm"></iframe>
 | |
| <p class="centertext">Something Missing that you feel should be included? Contact me </p>
 | |
| </body>
 | |
| </html>
 |