I don't understand what you want to achieve.
If you want to override I think
$("#customer").click(A);
$("#customer").click(B);
it will execute B on click.
Is it false?
On Sep 22, 1:35 pm, james_027 <[EMAIL PROTECTED]> wrote:
> hi
>
> i have something like this
>
> $('[EMAIL PROTECTED]').click(function(){
> $('[EMAIL PROTECTED]').show();
> });
>
> and during the user interaction i have something like this
>
> $('[EMAIL PROTECTED]').click(function(){
> alert('Lookup customer cant be shown any more.'');
> });
>
> I was expecting a new behavior when clicking the <div id="customer">
> tag, but what happen the two behavior are executing instead of the
> newer one overiding the older one. How can I achieve this?
>
> Thanks
> james