1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 | <table border="0" width="300" height="auto" id="mytable" style="background:#FBBB22;color:#FFF;font:14px arial;border:5px solid green">
<tr>
<td><a href="http://the-best-widgets.blogspot.gr"> WIDGETS FOR BLOGS ON BLOGGER</a></td>
</tr>
</table>
<script language="JavaScript1.2">
var speed=500
function flashit(){
var crosstable=document.getElementById? document.getElementById("mytable") : document.all? document.all.myexample : ""
if (crosstable){
if (crosstable.style.borderColor.indexOf("green")!=-1)
crosstable.style.borderColor="#FFFF00"
else
crosstable.style.borderColor="green"}}
setInterval("flashit()", speed)
</script>
|