tags:

views:

56

answers:

1

How does jquery handle event assignment when it comes to assigning the same handler multiple times? Let's say I have

<div class="draggable">Some Text</div>

Are there any side effects (performance or otherwise) from calling the following multiple times?

$('.draggable').draggable();
+4  A: 

If you bind a event like 'keydown' multiple times to an element, it will get attached to a queue of event handlers. So you can do the math, the more handlers are called, the slower it will perform.

Kind Regards

--Andy

jAndy