Add handler multiple times in jquery
- by AdmSteck
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();