if we register an event handler like this:
$(div1).on('event', handler ...
and after div1
gets removed (not by jQuery), but using plain js,
does the handler stay orphaned in memory ?
if we register an event handler like this:
$(div1).on('event', handler ...
and after div1
gets removed (not by jQuery), but using plain js,
does the handler stay orphaned in memory ?