I am interested to know if there is any way i can check from javascript code if an html element has overflow in it's content (but with the overflow property set to visible - so no scrollbars on the element). Can i check irrespective of scrollbars for overflow content (in a div tag for instance)? Thanks in advance.
|
|
Normally, you can compare the
Tested in FF3, IE6, Chrome 0.2.149.30. |
||||
|
|
|
Try comparing element.scrollHeight / element.scrollWidth to element.offsetHeight / element.offsetWidth http://developer.mozilla.org/en/DOM/element.offsetWidth |
|||
|
|
|
|
document.getElementById("divID").style.overflow |
||
|
|
