01/12/2003, 06:08
|
| | Fecha de Ingreso: noviembre-2003
Mensajes: 79
Antigüedad: 21 años, 1 mes Puntos: 0 | |
necesito ayuda, problema netscape Tengo dos funiciones que se ejecutan en los evento onMouserOver y onMouseOut:
function overELM(src,color) {
if (!src.contains(event.fromElement)) {
src.style.cursor = ''hand''; src.bgColor = color; }
}
htp.p(' function outELM(src,color) {
if (!src.contains(event.toElement)) {
src.style.cursor = ''default''; src.bgColor = color; }
}
En explorer funciona pero en netscape no. Me dice lo siguiente:
event is not defined.
Qué puedo hacer para que funcione en Netscape????
Gracias. |