3
votes
3answers
83 views
In jQuery if you remove an element will any events on it be removed?
For example if I have a link with the following event bound to it:
$("a.d").bind("click", this, onDelete);
And later do:
$("a.d").remove();
Is that fine? Or does it cause a memory leak and I …
2
votes
7answers
262 views
Uses for OnItemDataBound
What would you realistically use OnItemDataBound for on a Repeater ?
