You could run a **.style.visibility = 'hidden' command from a (body onload=***) or, if you have other things to do at startup, in a function theonload kicks off. I often have something like
Code:
function startup() {
document.penta.DeBugging.checked=false;
var dloc = document.location.toString();
var DeBugging = document.getElementById("DeBugging")
if (dloc.slice(0,4) != "file") {
DeBugging.style.visibility = 'hidden'; }
}
in my pages to populate text areas with test data from a checkbox only available when running the page from my computer.
Bookmarks