Edit
I just seen you found a solution, sweet :).
For completeness though I leave my answer as I finally found how to unbind the events completely.
You are using dynamic bindings and as such unbinding an individual element is
quite complex due to the event always bubbling up to the static element
it is bound from.
As seen in the other answer, you can overwrite the click event with a
new click event and stop propagation.
However, that still leaves you with an element which has an event
attached which always executes when clicked, even if it doesn't bubble
up.
The example below truly unbinds the event, leaving you with no left-over and not requiring propagation being stopped as the event is completely unbound:
$(document).one('click', 'div', function(e) {
$(this).parent().find("div").one('click.NewClick', function() {
$('#result').append(this.id + " was clicked<br />");
});
$(this).click();
});
DEMO - Unbinding individual elements bound dynamically
In the above demo I'm using one() through-out to ensure automatic unbinding of the event.
The outer one() is required for the logic, the inner one() is your requirement as you wanted the event unbound ones clicked.
I'm binding the initial click event as usual with the dynamic selector 'div', using one().
However, ones I'm inside the click event, after any of the divs have been clicked, I'm re-binding the click event to the elements, using one() again, this time using the static selector though as the elements now exists. I'm also using a namespace 'click.namespace' to ensure the unbinding of the outer one() does not get rid of the new bindings.
Now I have all my divs nicely bound with one(), which means they automatically unbind completely after being clicked.
To prevent the user from having to click twice after the initial click, I'm automatically triggering the click event ($(this).click()) of the element which was triggered the initial event, making is seamless to the user.
Your code should be able to use this with code similar to the below:
$("#idTable").one("click", "td", function(e) {
$(this).parent().find("td").one('click.NewClick', function() {
var oTxtbox = $('<input type="text" value="' + $(this).text() + '"/>');
$(this).html(oTxtbox);
// other code
});
$(this).click();
});
Note the use of one(), instead of on().
Off course the inner binding can be what ever you need it to be, one() was only selected as you wanted the event unbound after the element was clicked.
off().on()everytime you bind in your case, specially if you intend to re-bind. Add your outer table binding into a separate method which you call ones at the start and then again each time you wish to re-bind. Your document binding is going to be tricky. Each td click = document click! See this for more console outputs jsfiddle.net/tRNhJ/40 – François Wahl Aug 23 '12 at 11:18