Previous Message
Next Message

[css-d] disabling links

Sent by Gene LeFave on 26 February 2002 11:11


From:           	[EMAIL-REMOVED]
Subject:        	css-discuss digest, Vol 1 #73 - 38 
msgs
Send reply to:  	[EMAIL-REMOVED]
To:             	[EMAIL-REMOVED]
Date sent:      	Sat, 23 Feb 2002 12:02:04 -0500 (EST)
Rijk,

Forgot about that,  how does this sound for unhiding 
the links at the bottom of the page:


<script type="text/javascript">
var aNodes = document.getElementsByTagName('a')
var max =aNodes.length
for(var i = 0;i < max;i++)
   {
   var nodeObj =aNodes.item(i)
   nodeObj.style.visibility = 'visible';
   }

</script>

Thanks for reminding me before the pages went in use.

Gene

> Please don't tell me you are putting a style element in at the bottom
> of the page. I'm quite sure Austin was thinking about a JavaScript
> solution to change the visibility at the end of the page. This is
> bound to cause trouble in some browsers, as STYLE is only allowed in
> the HEAD section of the page.
> 
> 
> Greetings,
Previous Message
Next Message