inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Jun 5, 2005 3:48:14 GMT -8
<script type="text/javascript"> <!--
// Last post cell highlight // Created by PopThosePringles
// Highlight color var highColor = "#efefef";
var iCell = document.getElementsByTagName("td");
for(c = 0; c < iCell.length; c ++){ if(iCell.item(c).className == "windowbg2" && iCell.item(c).width == "24%" && iCell.item(c).vAlign == "top"){ iCell.item(c).onmouseover = function(){ this.style.cursor = "pointer"; this.style.backgroundColor = highColor; if(this.getElementsByTagName("a").item(1)){ this.title = this.getElementsByTagName("a").item(1).innerHTML; } } iCell.item(c).onmouseout = function(){ this.style.cursor = ""; this.style.backgroundColor = ""; } if(iCell.item(c).getElementsByTagName("a").item(1)){ iCell.item(c).onclick = function(){ location.href = this.getElementsByTagName("a").item(1).href; } } } }
//--> </script>
Main Footer.
Change the highlight color in the top of the script.
|
|