Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/12/2011, 11:04
pcruz
 
Fecha de Ingreso: abril-2007
Mensajes: 4
Antigüedad: 17 años
Puntos: 0
Firefox 8.0.1 en windows 7 no me muestra el tooltip

Código HTML:
function tooltipDisplay(e, showHide) {    
    if (!e) var e = window.event;
    e.cancelBubble = true;
    if (e.stopPropagation) e.stopPropagation();

    if (!showHide) {
        var isShow = document.getElementById('tooltip').style.display;
        if (isShow == '' || isShow == 'none') {
            document.getElementById('tooltip').style.display = 'block';
        }
        else {
            document.getElementById('tooltip').style.display = 'none';
        }
    }
}

function tooltipClose() {
    document.getElementById('tooltip').style.display = 'none';
}
Estoy utilizando este codigo para firefox 8.0.1 en windows 7 no muestra el tooltip en otros sistemas operativos si se muestra bien