ABSTRACT

modules_control.js /* We're going to grab the handle for the HEAD element. There are multiple . ways to do this, but this seems the most straightforward to me. You search . the document for the first HEAD tag and since that should be at the top of . the file, it's good enough! */ var cHead = document.getElementsByTagName("head"); //This ... ................
................