I check the jQuery code, and I see that it's already supported.

(From "jQuery-1.3.2.js" File)
if ( types === undefined || (typeof types === "string" && types.charAt
(0) == ".") )
        for ( var type in events )
                this.remove( elem, type + (types || "") );

Thank you


On Feb 26, 5:19 am, Ami <aminad...@gmail.com> wrote:
> Suggestion:  .unbind('.event-title")
>
> $('div').bind('click.mybind',func1).bind('focus.mybind',func2).bind
> ('click",func3)
>
> Now I am trying to unbind func1& func2 like:
>
> $('div').unbind('click.mybind').unbind('focus.mybind');
>
> My suggestion is that jQuery will support this:
> $('div').unbind('.mybind')
>
> What do you think?

Reply via email to