views:

20

answers:

2

Just interesting... What happens to node's event handlers when I remove it completely from the DOM tree? That means, if I create a node with the same id as removed node later, will it have the same event handlers?

A: 

No, there will be no event handlers on the new node, afaik.

Evgeny Shadchnev
A: 

Why don't you try It using the Firebug console. Just removing a node and then recreating It with the same ID would answer your question.

microspino