Help for this page

Select Code to Download


  1. or download this
    print $q->header( -type =>'text/html');
    print <<"EODEOD";
    ...
    <body onload="iframeLoad()">
    EODEOD
    
  2. or download this
    function iframeLoad(a) {
     a = document.getElementById("tableId").innerHTML;
     parent.document.getElementById("tableId").innerHTML = a; 
     parent.document.getElementById("hiframe").src = "about:blank"; 
    }
    
  3. or download this
     
    ...
     function showTable(loc) {
    ...
    <iframe id="hiframe" src="about:blank" style="visibility:hidden;displa
    +y:none"></iframe>
    <div id="tableId" style="background-color:lightgray"></div>
    ....
    
  4. or download this
     
    ....
    <div id="tableId">
    ...
    some stuff to display 
    more stuff 
    </pre></div>