JQuery: Binding and Unbinding Live Click Events?

According to the documentation: Live events currently only work when used against a selector. $(this) is not a selector.

Greg, interesting. Maybe if I assigned the live click event in the function as such: var $tempVar = $('#' + $(this). Attr('id')), and then said $tempVar.

Live("click", handleClick) Do you think this would work? – Mega Matt Nov 25 '09 at 19:25 I think so... – Greg Nov 25 '09 at 19:46 1 Yes that will work – PetersenDidIt Nov 26 '09 at 2:00.

To unbind the click handlers from all that were bound using .live(), use the .die() method: $(". Clickme"). Die("click").

You should use bind and unbind instead of live and die respectively. It should work.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions