12 lines
368 B
JavaScript
12 lines
368 B
JavaScript
|
<!-- //HIDE FROM NON-JAVASCRIPT BROWSERS
|
||
|
|
||
|
function loaddiv()
|
||
|
{
|
||
|
elm = document.getElementById('monthfea');
|
||
|
line1='<p class="monthfea">May 2020 featured book:</p>';
|
||
|
line2='<p class="monthfea"><a href=" http://www.troubleshooters.com/bookstore/ttech.htm">Troubleshooting Techniques of the successful technologist</a></p>';
|
||
|
|
||
|
elm.innerHTML=line1+line2;
|
||
|
}
|
||
|
//-->
|