|
Post by pm on Oct 1, 2009 2:46:53 GMT -8
I had this code at one time but lost it. I need to unlink Subject, Started by, Replies, Views, Last Post. The whole row. I want to keep the text but make them not be links. That make since? Thanks!
|
|
|
Post by Wormopolis on Oct 1, 2009 5:59:15 GMT -8
<script type="text/javascript"> <!-- // unlink catbg header links
for (tds=document.getElementsByTagName('td'), t=0; t<tds.length; t++) { if (tds[t].className=='catbg' && tds[t].firstChild && tds[t].firstChild.className=='cattext') { if (tds[t].firstChild.firstChild && tds[t].firstChild.firstChild.nodeName.match(/^a$/i)) { tds[t].firstChild.firstChild.removeAttribute('href'); } } } // --> </script>
|
|
|
Post by pm on Oct 1, 2009 6:38:44 GMT -8
Thanks Wormo!
|
|