@Teck: Nice, but do you have a current js script for the blink part?
visibility: show/hide for firefox i.e.?
Does work perfect in IE but not in Gecko
Thanks,
-Tom
/edit: Got one
Update JS code to this (delete old, add the following):
Code:
<script type="text/javascript">
<!--
// interval length (in seconds)
var intervalLength = .7;
function emulateBlink() {
objs = document.getElementsByTagName("span");
for(x = 0; x < objs.length; x++) {
if(objs[x].className == "blink") {
if(objs[x].style.visibility == "hidden") {
objs[x].style.visibility = "visible";
}
else {
objs[x].style.visibility = "hidden";
}
}
}
window.setTimeout("emulateBlink();",(intervalLength * 1000));
}
if(document.getElementsByTagName) {
emulateBlink();
}
-->
</script>
and then change the new pm link in the template
header_pm to look like this:
Code:
<span class="blink">something</span>
Great!