26/09/2005, 15:44
|
| Usuario baneado! | | Fecha de Ingreso: agosto-2005
Mensajes: 1.365
Antigüedad: 19 años, 5 meses Puntos: 0 | |
Codigo Js:
Código:
<script>
function over(src,color_entrada) {
src.bgColor=color_entrada;src.style.cursor="hand";
}
function out(src,color_default) {
src.bgColor=color_default;src.style.cursor="default";
}
</script>
Codigo js en html:
Código:
<table border="0" cellspacing="1" cellpadding="0" align="center" width="278">
<tr bgcolor="#FFFFFF">
<td onMouseOver="over(this,'CC0000');" onMouseOut="out(this,'FFFFFF');" align="center" width="100" valign="middle"><font face="Arial, Helvetica, sans-serif" size="1">
<a href="#">PASA POR ENCIMA</a></font></td>
<td width="95"> </td>
<td width="83"> </td></tr></table>
|