sorry didn't mean to hijack this email - i'll send a different one!

On 7/24/07, Jeff L <[EMAIL PROTECTED]> wrote:

Hi everyone,
I'm trying to bind a custom event and then use trigger() to trigger it,
but it's not working for me.

Here's my code, does anyone see any issues?

Currently it's logging 'mouseout' but not 'my Event' as I mouse over my
table cells.

           $(o).mouseout( function(event) {
                console.log('mouseout');
                $(event.target).trigger('myEvent');
            }).bind("myEvent",function(event) {
                console.log('my Event');
            });


Any help is appreciated!!


Jeff

Reply via email to