Here is tip to make flashing table using JAVA.
input this sourse inbetween <head> and </head>
<script language="JavaScript1.2">
<!--
function flashit(){
if (!document.all)
return
if (flash_table.style.borderColor=="navy")
flash_table.style.borderColor="#529CFF"
else
flash_table.style.borderColor="navy"
}
setInterval("flashit()", 700)
// -->
</script>
>>>> navy and # 529CFF is color of border of table
input this source where you wanna locate table inbetween <body> and </body>
<table id="flash_table" style="border:1 solid navy">
<tr>
<td>테이블 테두리가 깜박깜박~* </td>
</tr>
</table>
enjoy it
input this sourse inbetween <head> and </head>
<script language="JavaScript1.2">
<!--
function flashit(){
if (!document.all)
return
if (flash_table.style.borderColor=="navy")
flash_table.style.borderColor="#529CFF"
else
flash_table.style.borderColor="navy"
}
setInterval("flashit()", 700)
// -->
</script>
>>>> navy and # 529CFF is color of border of table
input this source where you wanna locate table inbetween <body> and </body>
<table id="flash_table" style="border:1 solid navy">
<tr>
<td>테이블 테두리가 깜박깜박~* </td>
</tr>
</table>
enjoy it
