Not exactly sure what you are trying to do.
Are you trying to have 2 separate click events, like this:
http://www.commadot.com/jquery/events/multipleEvents.htm

Or are you trying to unbind the original event?
Like this? $("p").unbind( "click" )

Or something else?

Glen

On 8/23/07, Estevão Lucas <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I have a 'a' element with the onclick event. I wanna use this event with
> another.
>
> Something like this:
>
> $( 'a' ).click( function()
> {
>      // if this element already has a event
>      this.click && this.click();
>
>     $( this ).css( "border", "1px solid red" );
> });
>
>
>
> Estevão Lucas

Reply via email to