1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<script> $(function($) { $('#termstext').bind('scroll', function() { if($(this).scrollTop() + $(this).innerHeight()>=$(this)[0].scrollHeight) { alert('end reached'); } }) } ); </script> |
