IE8 Scrollable TBODY - Scroll Event not working.

IE8 Scrollable TBODY - Scroll Event not working.

Hello,

Has anyone tried to bind the scroll event to a scrollable tbody in IE8 and it worked? If so, please let me know how you did that, because while it works in FF 3.6, it does not work in IE8 (unless I'm doing something wrong.) I've searched quite a bit for this and couldn't find anyone that had a question on this.

Thanks,

adobepro.

Example: I have a table with a scrollable tbody, and what I want to do is bind a scroll event to the tbody to find when the user had scrolled to the bottom of the scrollable tbody where I'll fetch additional TR rows.

$JQuery('#table_body').scroll(function()
    {
        alert('registered');

        if (  $JQuery('#table_body')[0].scrollHeight - $JQuery('#table_body').scrollTop() == $JQuery('#table_body').outerHeight() )
        {
          
            page_results_next();
        }
    });