Normalmente, puede comparar client[Height|Width]
con scroll[Height|Width]
para detectar esto ... pero los valores serán los mismos cuando el desbordamiento sea visible. Entonces, una rutina de detección debe explicar esto:
// Determines if the passed element is overflowing its bounds,
// either vertically or horizontally.
// Will temporarily modify the "overflow" style to detect this
// if necessary.
function checkOverflow(el)
{
var curOverflow = el.style.overflow;
if ( !curOverflow || curOverflow === "visible" )
el.style.overflow = "hidden";
var isOverflowing = el.clientWidth < el.scrollWidth
|| el.clientHeight < el.scrollHeight;
el.style.overflow = curOverflow;
return isOverflowing;
}
Probado en FF3, FF40.0.2, IE6, Chrome 0.2.149.30.