18
Làm cách nào để kiểm tra xem thanh cuộn có hiển thị không?
Có thể kiểm tra overflow:autodiv không? Ví dụ: HTML <div id="my_div" style="width: 100px; height:100px; overflow:auto;" class="my_class"> * content </div> YÊU CẦU $('.my_class').live('hover', function (event) { if (event.type == 'mouseenter') { if( ... if scrollbar visible ? ... ) { alert('true'): } else { alert('false'): } } }); Đôi khi là …