I have the following code:

        $("#element_id").live("mousedown", function(event){
                        ChangeView();
                        return false;
                });

When $("#element_id") is clicked, the ChangeView() function is called
not once, but multiple times. I see the following listing in the
Firebug Stack pane:

ChangeView()
complete()
(?)()
dequeue()
dequeue()
each()
each()
dequeue()
complete()
(?)()
dequeue()
dequeue()
each()
each()
dequeue()
complete()
step()
t
(?)()

dequeue() is a jQuery function.

I thought if I included:

  return false;

...the live event would only be called once. How can I correct this?

Thanks very much in advance to all for any info.

Reply via email to