Tagged Questions

4
votes
3answers
147 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
4answers
521 views

Disable click event with jQuery

My question is related about disabling links/click events with jQuery, and it's probably easier than it seems to me. I commented the important code to make it easier. I have the following code in a ...
0
votes
0answers
141 views

Jquery trigger event not working after updating to JQuery 1.6.2 from 1.4.2

I've been tasked to update jquery from 1.4.2 to 1.6.2. global event triggers have stopped working. $.event.trigger('custom'). var myObject = new MyObject(); $(myObject).bind("custom", ...
0
votes
3answers
1k views

Override all JavaScript events bound to an element with a single new event

Assuming that there are a large number of elements throughout the site that have an unknown number and type of events bound to them. If I need to override all of these events with one single bound ...
0
votes
3answers
318 views

jQuery .live(“click”, fn) works only on second clik

I have a DOM element that is generated with js, and therefore when i want to bind a click event listener i need to use $(generatedEl).live("click", fn...) (is there a different way?) here ...