Hi,

For example, how to override the original hover() method and use my
own code?

jQuery.fn.extend({

        hover: function(fnOver, fnOut) {
                return this.bind('mouseenter', fnOver).bind('mouseleave', 
fnOut);
        }

});


Thanks

Reply via email to