I have a number of edit links which remotely pull on an edit form, which is brought up in an overlay. In order to give feedback to users I have a span which replaces the original edit-tester link while the call is being made. Upon completion the span is removed correctly. The problem is, when clicking on the same link again 2 'thinking' spans appear. When clicked again 3 appear and so on.
Could anyone advise on why this is and how to fix it based on the sample code below?
I obviously want only 1 'thinking' span to appear whenever the link is pressed, not multiplicities dependent on the number of clicks.
Any pointers would be greatly appreciated!
$('a.edit-tester').click(function() {
$(this).bind('ajax:beforeSend', function() {
$(this).toggle();
$(this).after('<span class="thinking">Thinking</span>');
}).bind('ajax:success', function() {
$('span.thinking').remove();
$(this).toggle();
}).bind('ajax:error', function(){
$('span.thinking').remove();
$(this).toggle();
});
});
My only guess is that the actual 'thinking' span is not being removed from the DOM. Other than that it's anybody's guess...
EDIT: Edited the first line of the code above... I forgot to change it back after messing around with it.