Go to Google Groups Home    Low Pro
Re: low pro "too much recursion"

Ro <rohittriv...@gmail.com>

Good point.

It seems to be calling the _wrapObserver method,
then most of the time, it goes into the method:

Event.addBehavior({
        'tr:mouseover' : function(e) {
                $(this).addClassName('hover');
        },
        'tr:mouseout' : function(e) {
                $(this).removeClassName('hover');
        }

});

however, for large tables, at the bottom of the table, it doesn't get
through to this, and throws a "too much recursion" error..

On 2 May, 10:18, MRoderick <roderick.mor...@gmail.com> wrote:

> Some samples of your code and html would probably go a long way
> towards getting some kind of help with identifying the issue.