Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/01/2012, 19:09
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años
Puntos: 834
Respuesta: Detectar overflow

Probá así:
Código PHP:
var elementoScrolleable=document.getElementById('tucapa'),
    
flecha1=document.getElementById('tuflecha1'),
    
flecha2=document.getElementById('tuflecha2');
    if(
elementoScrolleable.scrollHeight<=elementoScrolleable.clientHeight)){//reemplazar Height por Width si el scroll es horizontal
        
flecha1.style.visibility=flecha2.style.visibility='hidden';
    }else{
        
flecha1.style.visibility=flecha2.style.visibility='visible';
    } 

Última edición por Panino5001; 28/01/2012 a las 19:14