i'm bind a dropdown
("#dropdownlist").change(function(){});
i'm calling the above code so many time.
how can i unbind this event before binding it each time....?
|
1
|
i'm bind a dropdown ("#dropdownlist").change(function(){}); i'm calling the above code so many time. how can i unbind this event before binding it each time....?
|
||
|
|
|
|
Additionally jQuery supports namespaces. For example say you have change handlers that do validation and change handlers that do help text hovering. You could register:
and
and then you can unbind a specific set before re-adding validation, e.g.
HTH Alex |
||
|
|
|
|
Use following logic:
|
||
|
|
|
|
You can use the
|
||
|
|
|
|
You could use one instead of bind:
|
|||
|
|