Tema: Cerrar menú
Ver Mensaje Individual
  #4 (permalink)  
Antiguo 26/12/2011, 09:15
Avatar de IsaBelM
IsaBelM
Colaborador
 
Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 15 años, 10 meses
Puntos: 1012
Respuesta: Cerrar menú

no me extraña que no te sirviera el evento onblur(). has de usar el objeto event. algo como esto
Cita:
function fnc(evt) {
if (!evt) evt = window.event;
document.getElementById('elem').style.display = ((evt.target || evt.srcElement).id == 'login') ? 'block' : 'none';
}

window.onload = function() {
document.addEventListener('click', function(event) {fnc(event)}, true)
};
__________________
if(ViolenciaDeGénero) {alert('MUJER ASESINADA');}