Note: Moved from thread - http://www.dynamicdrive.com/forums/s...313#post131313
I moved this because, at least for now, the error appears to have nothing to do with the script mentioned in the above linked post. I don't even think it's a Dynamic Drive script.
Please post new questions in a new thread like here where I've moved this, and:
Warning: Please include a link to the DD script(s) in question in your post. See
this thread for the proper posting format when asking a question.
That all said, that error comes from this bit:
Code:
<script language="JavaScript" type="text/javascript">
<!--
var show = 1
function blinkit(){
if (show == 1) {
document.getElementById('text').style.color = '#800000';
show=0; }
else {
document.getElementById('text').style.color = '#CCCCCC';
show=1; }
setTimeout("blinkit();",1000); // 1000 ms = 1 sec
}
//-->
</script>
</head>
<body onload="blinkit(); show_clock();">
There is no element with an id of 'text' on the page.
Bookmarks